ff9ada
From f9643b6934657292aae0b830627b1e5f9b8cbaa1 Mon Sep 17 00:00:00 2001
ff9ada
From: Eduardo Habkost <ehabkost@redhat.com>
ff9ada
Date: Tue, 19 Oct 2021 13:17:06 -0400
ff9ada
Subject: Fix virtio-net-pci* "vectors" compat
ff9ada
ff9ada
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
ff9ada
RH-MergeRequest: 77: 8.6/6.2 mt fixes
ff9ada
RH-Commit: [21/23] 8ad581932275d2698a99f31bec40b14f1dbd3d2e
ff9ada
RH-Bugzilla: 2026443
ff9ada
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
ff9ada
ff9ada
hw_compat_rhel_8_4 has an issue: it affects only "virtio-net-pci"
ff9ada
but not "virtio-net-pci-transitional" and
ff9ada
"virtio-net-pci-non-transitional".  The solution is to use the
ff9ada
"virtio-net-pci-base" type in compat_props.
ff9ada
ff9ada
An equivalent fix will be submitted for hw_compat_5_2 upstream.
ff9ada
ff9ada
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
ff9ada
(cherry picked from commit d45823ab0d0138b2fbaf2ed1e1896d2052f3ccb3)
ff9ada
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ff9ada
---
ff9ada
 hw/core/machine.c | 6 +++++-
ff9ada
 1 file changed, 5 insertions(+), 1 deletion(-)
ff9ada
ff9ada
diff --git a/hw/core/machine.c b/hw/core/machine.c
ff9ada
index 736c765c30..024b025fc2 100644
ff9ada
--- a/hw/core/machine.c
ff9ada
+++ b/hw/core/machine.c
ff9ada
@@ -71,7 +71,11 @@ GlobalProperty hw_compat_rhel_8_4[] = {
ff9ada
     /* hw_compat_rhel_8_4 from hw_compat_5_2 */
ff9ada
     { "virtio-blk-device", "report-discard-granularity", "off" },
ff9ada
     /* hw_compat_rhel_8_4 from hw_compat_5_2 */
ff9ada
-    { "virtio-net-pci", "vectors", "3"},
ff9ada
+    /*
ff9ada
+     * Upstream incorrectly had "virtio-net-pci" instead of "virtio-net-pci-base",
ff9ada
+     * (https://bugzilla.redhat.com/show_bug.cgi?id=1999141)
ff9ada
+     */
ff9ada
+    { "virtio-net-pci-base", "vectors", "3"},
ff9ada
 };
ff9ada
 const size_t hw_compat_rhel_8_4_len = G_N_ELEMENTS(hw_compat_rhel_8_4);
ff9ada
 
ff9ada
-- 
ff9ada
2.27.0
ff9ada