From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TnoY5-0007H1-DK for qemu-devel@nongnu.org; Wed, 26 Dec 2012 05:49:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TnoY1-0004cA-HF for qemu-devel@nongnu.org; Wed, 26 Dec 2012 05:49:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57977) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TnoY1-0004c1-0W for qemu-devel@nongnu.org; Wed, 26 Dec 2012 05:49:17 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBQAnGK6019820 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 26 Dec 2012 05:49:16 -0500 Date: Wed, 26 Dec 2012 12:52:29 +0200 From: "Michael S. Tsirkin" Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] [PATCH 3/8] kvm: add stub for update msi route List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, asias@redhat.com, stefanha@redhat.com Will be used by virtio-pci. Signed-off-by: Michael S. Tsirkin --- kvm-stub.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kvm-stub.c b/kvm-stub.c index 5b97152..81f8967 100644 --- a/kvm-stub.c +++ b/kvm-stub.c @@ -131,6 +131,11 @@ void kvm_irqchip_release_virq(KVMState *s, int virq) { } +int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg) +{ + return -ENOSYS; +} + int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int virq) { return -ENOSYS; -- MST