From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Sullivan Subject: [PATCH 1/9] Extended kvm_lapic_irq struct with 'bool redir_hint' for MSI delivery Date: Sat, 14 Mar 2015 18:00:16 -0600 Message-ID: <1426377624-2046-2-git-send-email-sullivan.james.f@gmail.com> References: <1426377624-2046-1-git-send-email-sullivan.james.f@gmail.com> Cc: gleb@kernel.org, pbonzini@redhat.com, James Sullivan To: kvm@vger.kernel.org Return-path: Received: from mail-pa0-f49.google.com ([209.85.220.49]:35455 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751669AbbCOADX (ORCPT ); Sat, 14 Mar 2015 20:03:23 -0400 Received: by pabyw6 with SMTP id yw6so25474978pab.2 for ; Sat, 14 Mar 2015 17:03:22 -0700 (PDT) In-Reply-To: <1426377624-2046-1-git-send-email-sullivan.james.f@gmail.com> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: James Sullivan --- arch/x86/include/asm/kvm_host.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index a236e39..77feaf4 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -685,6 +685,7 @@ struct kvm_lapic_irq { u32 trig_mode; u32 shorthand; u32 dest_id; + bool msi_redir_hint; }; struct kvm_x86_ops { -- 2.3.1