diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2009-02-10 20:41:41 -0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-02-15 02:47:38 +0200 |
commit | b682b814e3cc340f905c14dff87ce8bdba7c5eba (patch) | |
tree | 315edc1c2990a57b6af99fda00e0445a2b175390 /arch/x86/kvm/svm.c | |
parent | d7cff1c37664971aae32bb0de82231ed34933d8e (diff) |
KVM: x86: fix LAPIC pending count calculation
Simplify LAPIC TMCCT calculation by using hrtimer provided
function to query remaining time until expiration.
Fixes host hang with nested ESX.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 1452851ae25..a9e769e4e25 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -1600,7 +1600,6 @@ static void svm_intr_assist(struct kvm_vcpu *vcpu) /* Okay, we can deliver the interrupt: grab it and update PIC state. */ intr_vector = kvm_cpu_get_interrupt(vcpu); svm_inject_irq(svm, intr_vector); - kvm_timer_intr_post(vcpu, intr_vector); out: update_cr8_intercept(vcpu); } |