From: Christian Borntraeger Date: Thu, 18 Oct 2007 12:39:10 +0000 (+0200) Subject: KVM: Use virtual cpu accounting if available for guest times. X-Git-Tag: firefly_0821_release~23631^2~200 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e56a7a28e21aa2d1af659d8f38952411ce9ae40e;hp=8a7ae055f3533b520401c170ac55e30628b34df5;p=firefly-linux-kernel-4.4.55.git KVM: Use virtual cpu accounting if available for guest times. ppc and s390 offer the possibility to track process times precisely by looking at cpu timer on every context switch, irq, softirq etc. We can use that infrastructure as well for guest time accounting. We need to account the used time before we change the state. This patch adds a call to account_system_vtime to kvm_guest_enter and kvm_guest exit. If CONFIG_VIRT_CPU_ACCOUNTING is not set, account_system_vtime is defined in hardirq.h as an empty function, which means this patch does not change the behaviour on other platforms. I compile tested this patch on x86 and function tested the patch on s390. Signed-off-by: Christian Borntraeger Signed-off-by: Avi Kivity --- diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index df0711ce9baa..e8a21e8cb2ad 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h @@ -7,6 +7,7 @@ */ #include +#include #include #include #include @@ -671,11 +672,13 @@ __init void kvm_arch_init(void); static inline void kvm_guest_enter(void) { + account_system_vtime(current); current->flags |= PF_VCPU; } static inline void kvm_guest_exit(void) { + account_system_vtime(current); current->flags &= ~PF_VCPU; }