From patchwork Wed Dec 26 10:52:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 208159 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 73A152C00A6 for ; Wed, 26 Dec 2012 21:49:51 +1100 (EST) Received: from localhost ([::1]:38521 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TnoYX-0007s0-IA for incoming@patchwork.ozlabs.org; Wed, 26 Dec 2012 05:49:49 -0500 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 Received: from redhat.com (vpn1-4-149.ams2.redhat.com [10.36.4.149]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id qBQAnEoO015282; Wed, 26 Dec 2012 05:49:15 -0500 Date: Wed, 26 Dec 2012 12:52:29 +0200 From: "Michael S. Tsirkin" To: qemu-devel@nongnu.org, asias@redhat.com, stefanha@redhat.com Message-ID: References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-Mutt-Fcc: =sent X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 3/8] kvm: add stub for update msi route X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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;