diff options
author | Laurent Vivier <Laurent.Vivier@bull.net> | 2007-10-18 09:19:01 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-10-22 06:03:29 -0400 |
commit | 0552f73b9a81d39d50b71a5c06cf36efff80b6fd (patch) | |
tree | 28a9eacbaa6c76a24eb0c019cc919aab5180aab7 /drivers/kvm | |
parent | 4e62417bf317504c0b85e0d7abd236f334f54eaf (diff) |
KVM: Move kvm_guest_exit() after local_irq_enable()
We need to make sure that the timer interrupt happens before we clear
PF_VCPU, so the accounting code actually sees guest mode.
http://lkml.org/lkml/2007/10/15/114
Signed-off-by: Laurent Vivier <Laurent.Vivier@bull.net>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm')
-rw-r--r-- | drivers/kvm/kvm_main.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/kvm/kvm_main.c b/drivers/kvm/kvm_main.c index af2d288c881d..8c458f262872 100644 --- a/drivers/kvm/kvm_main.c +++ b/drivers/kvm/kvm_main.c | |||
@@ -2054,12 +2054,21 @@ again: | |||
2054 | 2054 | ||
2055 | kvm_x86_ops->run(vcpu, kvm_run); | 2055 | kvm_x86_ops->run(vcpu, kvm_run); |
2056 | 2056 | ||
2057 | kvm_guest_exit(); | ||
2058 | vcpu->guest_mode = 0; | 2057 | vcpu->guest_mode = 0; |
2059 | local_irq_enable(); | 2058 | local_irq_enable(); |
2060 | 2059 | ||
2061 | ++vcpu->stat.exits; | 2060 | ++vcpu->stat.exits; |
2062 | 2061 | ||
2062 | /* | ||
2063 | * We must have an instruction between local_irq_enable() and | ||
2064 | * kvm_guest_exit(), so the timer interrupt isn't delayed by | ||
2065 | * the interrupt shadow. The stat.exits increment will do nicely. | ||
2066 | * But we need to prevent reordering, hence this barrier(): | ||
2067 | */ | ||
2068 | barrier(); | ||
2069 | |||
2070 | kvm_guest_exit(); | ||
2071 | |||
2063 | preempt_enable(); | 2072 | preempt_enable(); |
2064 | 2073 | ||
2065 | /* | 2074 | /* |