Blame SOURCES/0024-x86-rhel-machine-types-Wire-compat-into-q35-and-i440.patch

60061b
From 7bd99eebadfdbea6a76585b526e7cab1ee8b1fde Mon Sep 17 00:00:00 2001
60061b
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
60061b
Date: Tue, 23 Nov 2021 18:07:49 +0000
60061b
Subject: x86/rhel machine types: Wire compat into q35 and i440fx
60061b
60061b
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
60061b
RH-MergeRequest: 77: 8.6/6.2 mt fixes
60061b
RH-Commit: [23/23] fc3861aeccc943b434231193ef45ffbc0b3cf6c6
60061b
RH-Bugzilla: 2026443
60061b
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
60061b
60061b
Wire the pc_rhel_8_5 compat data into both piix and q35
60061b
to keep the existing machine types compatible.
60061b
60061b
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
60061b
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
60061b
---
60061b
 hw/i386/pc_piix.c | 4 ++++
60061b
 hw/i386/pc_q35.c  | 4 ++++
60061b
 2 files changed, 8 insertions(+)
60061b
60061b
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
60061b
index 2885edffe9..37fab00733 100644
60061b
--- a/hw/i386/pc_piix.c
60061b
+++ b/hw/i386/pc_piix.c
60061b
@@ -1040,6 +1040,10 @@ static void pc_machine_rhel760_options(MachineClass *m)
60061b
     pcmc->kvmclock_create_always = false;
60061b
     /* From pc_i440fx_5_1_machine_options() */
60061b
     pcmc->pci_root_uid = 1;
60061b
+    compat_props_add(m->compat_props, hw_compat_rhel_8_5,
60061b
+                     hw_compat_rhel_8_5_len);
60061b
+    compat_props_add(m->compat_props, pc_rhel_8_5_compat,
60061b
+                     pc_rhel_8_5_compat_len);
60061b
     compat_props_add(m->compat_props, hw_compat_rhel_8_4,
60061b
                      hw_compat_rhel_8_4_len);
60061b
     compat_props_add(m->compat_props, pc_rhel_8_4_compat,
60061b
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
60061b
index c67418b6a9..78876e1101 100644
60061b
--- a/hw/i386/pc_q35.c
60061b
+++ b/hw/i386/pc_q35.c
60061b
@@ -658,6 +658,10 @@ static void pc_q35_machine_rhel850_options(MachineClass *m)
60061b
     m->desc = "RHEL-8.5.0 PC (Q35 + ICH9, 2009)";
60061b
     pcmc->smbios_stream_product = "RHEL-AV";
60061b
     pcmc->smbios_stream_version = "8.5.0";
60061b
+    compat_props_add(m->compat_props, hw_compat_rhel_8_5,
60061b
+                     hw_compat_rhel_8_5_len);
60061b
+    compat_props_add(m->compat_props, pc_rhel_8_5_compat,
60061b
+                     pc_rhel_8_5_compat_len);
60061b
 }
60061b
 
60061b
 DEFINE_PC_MACHINE(q35_rhel850, "pc-q35-rhel8.5.0", pc_q35_init_rhel850,
60061b
-- 
60061b
2.27.0
60061b