From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvAac-0003Y2-74 for qemu-devel@nongnu.org; Tue, 15 Jan 2013 12:46:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TvAaZ-0006wX-Nh for qemu-devel@nongnu.org; Tue, 15 Jan 2013 12:46:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35719) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvAaZ-0006wP-G9 for qemu-devel@nongnu.org; Tue, 15 Jan 2013 12:46:19 -0500 Date: Tue, 15 Jan 2013 19:50:13 +0200 From: "Michael S. Tsirkin" Message-ID: <20130115175012.GA9979@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] kvm: add stub for kvm_irqchip_update_msi_route List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Anthony Liguori Cc: Peter Maydell , Gleb Natapov , Jan Kiszka , Marcelo Tosatti , Andreas =?iso-8859-1?Q?F=E4rber?= ppc64 build needs this stub to build with virtio enabled. Signed-off-by: Michael S. Tsirkin Tested-by: Andreas F=E4rber --- kvm-all.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kvm-all.c b/kvm-all.c index fc0c6e7..bac67da 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1182,6 +1182,11 @@ static int kvm_irqchip_assign_irqfd(KVMState *s, i= nt fd, int virq, bool assign) { abort(); } + +int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg) +{ + return -ENOSYS; +} #endif /* !KVM_CAP_IRQ_ROUTING */ =20 int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int vi= rq) --=20 MST