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

495e37
From 6762f5646943c759ece5972f08eb88364cf0a8ad Mon Sep 17 00:00:00 2001
495e37
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
495e37
Date: Tue, 23 Nov 2021 18:07:49 +0000
495e37
Subject: x86/rhel machine types: Wire compat into q35 and i440fx
495e37
495e37
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
495e37
RH-MergeRequest: 76: 9.0/6.2.0-rc1 x86 machine type fixes
495e37
RH-Commit: [22/22] e2767df0d920773057cb52d346e0106a76cb0a28
495e37
RH-Bugzilla: 2025468
495e37
RH-Acked-by: quintela1 <quintela@redhat.com>
495e37
RH-Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>
495e37
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
495e37
Wire the pc_rhel_8_5 compat data into both piix and q35
495e37
to keep the existing machine types compatible.
495e37
495e37
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
495e37
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
495e37
---
495e37
 hw/i386/pc_piix.c | 4 ++++
495e37
 hw/i386/pc_q35.c  | 4 ++++
495e37
 2 files changed, 8 insertions(+)
495e37
495e37
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
495e37
index dabc6c1933..183b5d5464 100644
495e37
--- a/hw/i386/pc_piix.c
495e37
+++ b/hw/i386/pc_piix.c
495e37
@@ -993,6 +993,10 @@ static void pc_machine_rhel760_options(MachineClass *m)
495e37
     pcmc->kvmclock_create_always = false;
495e37
     /* From pc_i440fx_5_1_machine_options() */
495e37
     pcmc->pci_root_uid = 1;
495e37
+    compat_props_add(m->compat_props, hw_compat_rhel_8_5,
495e37
+                     hw_compat_rhel_8_5_len);
495e37
+    compat_props_add(m->compat_props, pc_rhel_8_5_compat,
495e37
+                     pc_rhel_8_5_compat_len);
495e37
     compat_props_add(m->compat_props, hw_compat_rhel_8_4,
495e37
                      hw_compat_rhel_8_4_len);
495e37
     compat_props_add(m->compat_props, pc_rhel_8_4_compat,
495e37
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
495e37
index 04c911da18..0e7e885e78 100644
495e37
--- a/hw/i386/pc_q35.c
495e37
+++ b/hw/i386/pc_q35.c
495e37
@@ -658,6 +658,10 @@ static void pc_q35_machine_rhel850_options(MachineClass *m)
495e37
     m->desc = "RHEL-8.5.0 PC (Q35 + ICH9, 2009)";
495e37
     pcmc->smbios_stream_product = "RHEL-AV";
495e37
     pcmc->smbios_stream_version = "8.5.0";
495e37
+    compat_props_add(m->compat_props, hw_compat_rhel_8_5,
495e37
+                     hw_compat_rhel_8_5_len);
495e37
+    compat_props_add(m->compat_props, pc_rhel_8_5_compat,
495e37
+                     pc_rhel_8_5_compat_len);
495e37
 }
495e37
 
495e37
 DEFINE_PC_MACHINE(q35_rhel850, "pc-q35-rhel8.5.0", pc_q35_init_rhel850,
495e37
-- 
495e37
2.27.0
495e37