From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToXO1-0001ZC-Oe for qemu-devel@nongnu.org; Fri, 28 Dec 2012 05:41:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ToXO0-0003Ok-K9 for qemu-devel@nongnu.org; Fri, 28 Dec 2012 05:41:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:19802) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToXO0-0003Og-C7 for qemu-devel@nongnu.org; Fri, 28 Dec 2012 05:41:56 -0500 From: Jason Wang Date: Fri, 28 Dec 2012 18:32:04 +0800 Message-Id: <1356690724-37891-13-git-send-email-jasowang@redhat.com> In-Reply-To: <1356690724-37891-1-git-send-email-jasowang@redhat.com> References: <1356690724-37891-1-git-send-email-jasowang@redhat.com> Subject: [Qemu-devel] [PATCH 12/12] virtio-net: compat multiqueue support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: mst@redhat.com, aliguori@us.ibm.com, stefanha@redhat.com, qemu-devel@nongnu.org Cc: krkumar2@in.ibm.com, kvm@vger.kernel.org, mprivozn@redhat.com, Jason Wang , rusty@rustcorp.com.au, jwhan@filewood.snu.ac.kr, shiyer@redhat.com Disable multiqueue support for pre 1.4. Signed-off-by: Jason Wang --- hw/pc_piix.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 19e342a..0145370 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -295,6 +295,10 @@ static QEMUMachine pc_machine_v1_4 = { .driver = "usb-tablet",\ .property = "usb_version",\ .value = stringify(1),\ + },{ \ + .driver = "virtio-net-pci", \ + .property = "mq", \ + .value = "off", \ } static QEMUMachine pc_machine_v1_3 = { -- 1.7.1