diff options
| author | Suravee Suthikulpanit <[email protected]> | 2020-05-06 08:17:56 -0500 |
|---|---|---|
| committer | Paolo Bonzini <[email protected]> | 2020-05-15 12:26:23 -0400 |
| commit | de182481629c2dc248adbb4ec5df83cd9d633dd4 (patch) | |
| tree | 720d0ec76f4cc469edd222e6d5cf67d5ce1f25b7 | |
| parent | e14b7786cb1cf39a12e79bb04e2f43afc2eabc0f (diff) | |
KVM: SVM: Remove unnecessary V_IRQ unsetting
This has already been handled in the prior call to svm_clear_vintr().
Signed-off-by: Suravee Suthikulpanit <[email protected]>
Message-Id: <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
| -rw-r--r-- | arch/x86/kvm/svm/svm.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/kvm/svm/svm.c b/arch/x86/kvm/svm/svm.c index 801886142cc4..4e9cd2a73ad0 100644 --- a/arch/x86/kvm/svm/svm.c +++ b/arch/x86/kvm/svm/svm.c @@ -2660,8 +2660,6 @@ static int interrupt_window_interception(struct vcpu_svm *svm) */ svm_toggle_avic_for_irq_window(&svm->vcpu, true); - svm->vmcb->control.int_ctl &= ~V_IRQ_MASK; - mark_dirty(svm->vmcb, VMCB_INTR); ++svm->vcpu.stat.irq_window_exits; return 1; } |