From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH v2 1/2] KVM: nVMX: Fix virtual interrupt delivery injection Date: Thu, 17 Jul 2014 13:31:06 +0200 Message-ID: <53C7B3FA.3050506@redhat.com> References: <1405594981-31384-1-git-send-email-wanpeng.li@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , Gleb Natapov , Bandan Das , Zhang Yang , Hu Robert , kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: Wanpeng Li , Jan Kiszka Return-path: In-Reply-To: <1405594981-31384-1-git-send-email-wanpeng.li@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Il 17/07/2014 13:03, Wanpeng Li ha scritto: > + /* > + * Fall back to old way to inject the interrupt since there > + * is no vAPIC-v for L2. > + */ > + if (vcpu->arch.exception.pending || > + vcpu->arch.nmi_injected || > + vcpu->arch.interrupt.pending) > + return; This is just if (kvm_event_needs_reinjection(vcpu)) return; but apart from this the patch is okay. I'll make the change and apply it, thanks. Paolo