The patch titled KVM: Simplify test for interrupt window has been removed from the -mm tree. Its filename was kvm-simplify-test-for-interrupt-window.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: KVM: Simplify test for interrupt window From: Dor Laor <dor.laor@xxxxxxxxxxxx> No need to test for rflags.if as both VT and SVM specs assure us that on exit caused from interrupt window opening, 'if' is set. Signed-off-by: Dor Laor <dor.laor@xxxxxxxxxxxx> Signed-off-by: Avi Kivity <avi@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/kvm/svm.c | 3 +-- drivers/kvm/vmx.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/kvm/svm.c~kvm-simplify-test-for-interrupt-window drivers/kvm/svm.c --- a/drivers/kvm/svm.c~kvm-simplify-test-for-interrupt-window +++ a/drivers/kvm/svm.c @@ -1206,8 +1206,7 @@ static int interrupt_window_interception * possible */ if (kvm_run->request_interrupt_window && - !vcpu->irq_summary && - (vcpu->svm->vmcb->save.rflags & X86_EFLAGS_IF)) { + !vcpu->irq_summary) { ++kvm_stat.irq_window_exits; kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; return 0; diff -puN drivers/kvm/vmx.c~kvm-simplify-test-for-interrupt-window drivers/kvm/vmx.c --- a/drivers/kvm/vmx.c~kvm-simplify-test-for-interrupt-window +++ a/drivers/kvm/vmx.c @@ -1604,8 +1604,7 @@ static int handle_interrupt_window(struc * possible */ if (kvm_run->request_interrupt_window && - !vcpu->irq_summary && - (vmcs_readl(GUEST_RFLAGS) & X86_EFLAGS_IF)) { + !vcpu->irq_summary) { kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN; ++kvm_stat.irq_window_exits; return 0; _ Patches currently in -mm which might be from dor.laor@xxxxxxxxxxxx are - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html