diff options
author | Jesse Larrew <jlarrew@linux.vnet.ibm.com> | 2013-02-05 17:47:17 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-08 11:14:19 -0600 |
commit | 32ab06bcf1352848eec42629a85e20efa4e105dc (patch) | |
tree | 6e87de57194078c68e3f421939cef3f8dccce712 /hw | |
parent | 14f9b664b34bbd37a488cb5c762aa278c60e1fb6 (diff) | |
download | qemu-32ab06bcf1352848eec42629a85e20efa4e105dc.zip qemu-32ab06bcf1352848eec42629a85e20efa4e105dc.tar.gz qemu-32ab06bcf1352848eec42629a85e20efa4e105dc.tar.bz2 |
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 <jlarrew@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/virtio-net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio-net.h b/hw/virtio-net.h index f5fea6e..e654c13 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 |