From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC5P8-0006Ry-MP for qemu-devel@nongnu.org; Thu, 13 Sep 2012 05:08:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TC5P2-0000Zq-Vb for qemu-devel@nongnu.org; Thu, 13 Sep 2012 05:08:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TC5P2-0000Ze-M6 for qemu-devel@nongnu.org; Thu, 13 Sep 2012 05:08:04 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8D984rj004703 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 13 Sep 2012 05:08:04 -0400 From: Gerd Hoffmann Date: Thu, 13 Sep 2012 11:08:01 +0200 Message-Id: <1347527282-3326-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1347527282-3326-1-git-send-email-kraxel@redhat.com> References: <1347527282-3326-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 2/3] compat: turn off msi/msix on xhci for old machine types List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/pc_piix.c | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 5a0796b..afd8361 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -358,14 +358,30 @@ static QEMUMachine pc_machine_v1_3 = { .is_default = 1, }; +#define PC_COMPAT_1_2 \ + {\ + .driver = "nec-usb-xhci",\ + .property = "msi",\ + .value = "off",\ + },{\ + .driver = "nec-usb-xhci",\ + .property = "msix",\ + .value = "off",\ + } + static QEMUMachine pc_machine_v1_2 = { .name = "pc-1.2", .desc = "Standard PC", .init = pc_init_pci, .max_cpus = 255, + .compat_props = (GlobalProperty[]) { + PC_COMPAT_1_2, + { /* end of list */ } + }, }; #define PC_COMPAT_1_1 \ + PC_COMPAT_1_2,\ {\ .driver = "virtio-scsi-pci",\ .property = "hotplug",\ -- 1.7.1