From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wanpeng Li Subject: Re: [PATCH v2 1/2] KVM: nVMX: Fix virtual interrupt delivery injection Date: Thu, 17 Jul 2014 19:50:08 +0800 Message-ID: <20140717115008.GA10133@kernel> References: <1405594981-31384-1-git-send-email-wanpeng.li@linux.intel.com> <53C7B3FA.3050506@redhat.com> Reply-To: Wanpeng Li Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Jan Kiszka , Marcelo Tosatti , Gleb Natapov , Bandan Das , Zhang Yang , Hu Robert , kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: Paolo Bonzini Return-path: Content-Disposition: inline In-Reply-To: <53C7B3FA.3050506@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On Thu, Jul 17, 2014 at 01:31:06PM +0200, Paolo Bonzini wrote: >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. > Thanks. Regards, Wanpeng Li >Paolo