diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2011-06-12 16:31:38 +0300 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2011-06-14 16:48:00 +0300 |
| commit | b91cb44215101da1d005804392807d5785b9ebfb (patch) | |
| tree | 4c9e20ae5b9cc30383f71785923beb414b29d247 /hw/pc_piix.c | |
| parent | bcbabae8ff7f7ec114da9fe2aa7f25f420f35306 (diff) | |
| download | focaccia-qemu-b91cb44215101da1d005804392807d5785b9ebfb.tar.gz focaccia-qemu-b91cb44215101da1d005804392807d5785b9ebfb.zip | |
virtio: compat event idx support
Disable event index for compat machine types. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pc_piix.c')
| -rw-r--r-- | hw/pc_piix.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/hw/pc_piix.c b/hw/pc_piix.c index a85214b7f1..1aba09f8f6 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -244,6 +244,18 @@ static QEMUMachine pc_machine_v0_13 = { .driver = "PCI", .property = "command_serr_enable", .value = "off", + },{ + .driver = "virtio-blk-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-serial-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-net-pci", + .property = "event_idx", + .value = "off", }, { /* end of list */ } }, @@ -275,6 +287,18 @@ static QEMUMachine pc_machine_v0_12 = { .driver = "PCI", .property = "command_serr_enable", .value = "off", + },{ + .driver = "virtio-blk-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-serial-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-net-pci", + .property = "event_idx", + .value = "off", }, { /* end of list */ } } @@ -314,6 +338,18 @@ static QEMUMachine pc_machine_v0_11 = { .driver = "PCI", .property = "command_serr_enable", .value = "off", + },{ + .driver = "virtio-blk-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-serial-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-net-pci", + .property = "event_idx", + .value = "off", }, { /* end of list */ } } @@ -365,6 +401,18 @@ static QEMUMachine pc_machine_v0_10 = { .driver = "PCI", .property = "command_serr_enable", .value = "off", + },{ + .driver = "virtio-blk-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-serial-pci", + .property = "event_idx", + .value = "off", + },{ + .driver = "virtio-net-pci", + .property = "event_idx", + .value = "off", }, { /* end of list */ } }, |