From: Jesse Larrew Date: Tue, 5 Feb 2013 23:47:17 +0000 (-0600) Subject: hw/virtio-net: disable multiqueue by default X-Git-Tag: v1.4.0-rc2~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32ab06bcf1352848eec42629a85e20efa4e105dc;p=thirdparty%2Fqemu.git hw/virtio-net: disable multiqueue by default The new multiqueue feature adds fields to the virtio device config, which breaks Windows guests. Disable the feature by default until the Windows drivers are fixed. Signed-off-by: Jesse Larrew Signed-off-by: Anthony Liguori --- diff --git a/hw/virtio-net.h b/hw/virtio-net.h index f5fea6e9bc3..e654c13a9fc 100644 --- a/hw/virtio-net.h +++ b/hw/virtio-net.h @@ -191,6 +191,6 @@ struct virtio_net_ctrl_mq { DEFINE_PROP_BIT("ctrl_vlan", _state, _field, VIRTIO_NET_F_CTRL_VLAN, true), \ DEFINE_PROP_BIT("ctrl_rx_extra", _state, _field, VIRTIO_NET_F_CTRL_RX_EXTRA, true), \ DEFINE_PROP_BIT("ctrl_mac_addr", _state, _field, VIRTIO_NET_F_CTRL_MAC_ADDR, true), \ - DEFINE_PROP_BIT("mq", _state, _field, VIRTIO_NET_F_MQ, true) + DEFINE_PROP_BIT("mq", _state, _field, VIRTIO_NET_F_MQ, false) #endif