diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2021-11-03 12:38:31 +0100 |
|---|---|---|
| committer | Jason Wang <jasowang@redhat.com> | 2021-11-05 11:32:00 +0800 |
| commit | 3fd641ac5ec713e67129c1a57e8b6281182bd843 (patch) | |
| tree | a95c21d12770e94f41c0f3640be6f40dd0a155dc /hw/core/machine.c | |
| parent | 25ddb946e6301f42cff3094ea1c25fb78813e7e9 (diff) | |
| download | focaccia-qemu-3fd641ac5ec713e67129c1a57e8b6281182bd843.tar.gz focaccia-qemu-3fd641ac5ec713e67129c1a57e8b6281182bd843.zip | |
Fix virtio-net-pci* "vectors" compat
hw_compat_5_2 has an issue: it affects only "virtio-net-pci" but not "virtio-net-pci-transitional" and "virtio-net-pci-non-transitional". The solution is to use the "virtio-net-pci-base" type in compat_props. Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1999141 Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be> Acked-by: Jason Wang <jasowang@redhat.com> Acked-by: Jean-Louis Dupond <jean-louis@dupond.be> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/core/machine.c')
| -rw-r--r-- | hw/core/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index 948b3d9524..26ec54e726 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -56,7 +56,7 @@ GlobalProperty hw_compat_5_2[] = { { "ICH9-LPC", "smm-compat", "on"}, { "PIIX4_PM", "smm-compat", "on"}, { "virtio-blk-device", "report-discard-granularity", "off" }, - { "virtio-net-pci", "vectors", "3"}, + { "virtio-net-pci-base", "vectors", "3"}, }; const size_t hw_compat_5_2_len = G_N_ELEMENTS(hw_compat_5_2); |