diff options
author | Laurent Vivier <Laurent.Vivier@bull.net> | 2007-10-15 11:00:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:00:19 -0400 |
commit | d172fcd3ae1ca7ac27ec8904242fd61e0e11d332 (patch) | |
tree | 5009ae88a2ab2aa7f17219c7ddfc0a694c2ff6b4 /drivers/kvm/kvm.h | |
parent | 94886b84b1bcdc95f34f70e7fce407efefe472e1 (diff) |
sched: guest CPU accounting: maintain guest state in KVM
Modify KVM to update guest time accounting.
[ mingo@elte.hu: ported to 2.6.24 KVM. ]
Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
Acked-by: Avi Kivity <avi@qumranet.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'drivers/kvm/kvm.h')
-rw-r--r-- | drivers/kvm/kvm.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index ad0813843adc..3b0bc4bda5f2 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h | |||
@@ -624,6 +624,16 @@ void kvm_mmu_unload(struct kvm_vcpu *vcpu); | |||
624 | 624 | ||
625 | int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run); | 625 | int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run); |
626 | 626 | ||
627 | static inline void kvm_guest_enter(void) | ||
628 | { | ||
629 | current->flags |= PF_VCPU; | ||
630 | } | ||
631 | |||
632 | static inline void kvm_guest_exit(void) | ||
633 | { | ||
634 | current->flags &= ~PF_VCPU; | ||
635 | } | ||
636 | |||
627 | static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, | 637 | static inline int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t gva, |
628 | u32 error_code) | 638 | u32 error_code) |
629 | { | 639 | { |