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