Laurent Vivier wrote:
> [PATCH 4/4] Modify KVM to update guest time accounting.
>
>   

> Index: kvm/drivers/kvm/kvm.h
> ===================================================================
> --- kvm.orig/drivers/kvm/kvm.h        2007-08-20 13:23:53.000000000 +0200
> +++ kvm/drivers/kvm/kvm.h     2007-08-20 13:23:58.000000000 +0200
> @@ -589,6 +589,17 @@ void kvm_mmu_unload(struct kvm_vcpu *vcp
>  
>  int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run);
>  
> +static inline void kvm_guest_enter(void)
> +{
> +#ifdef CONFIG_GUEST_ACCOUNTING
> +     current->flags |= PF_VCPU;
> +#endif
>   

Since you select GUEST_ACCOUNTING, the #ifdef is always true?

> +}
> +
> +static inline void kvm_guest_exit(void)
> +{
>   

Missing content?

-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to