1744d66d6e
- kvm-pc-7.5-compat-entries.patch [bz#1655820] - kvm-compat-Generic-HW_COMPAT_RHEL7_6.patch [bz#1655820] - kvm-pc-PC_RHEL7_6_COMPAT.patch [bz#1655820] - kvm-pc-Add-compat-for-pc-i440fx-rhel7.6.0-machine-type.patch [bz#1655820] - kvm-pc-Add-pc-q35-8.0.0-machine-type.patch [bz#1655820] - kvm-pc-Add-x-migrate-smi-count-off-to-PC_RHEL7_6_COMPAT.patch [bz#1655820] - kvm-clear-out-KVM_ASYNC_PF_DELIVERY_AS_PF_VMEXIT-for.patch [bz#1659604] - kvm-Add-edk2-Requires-to-qemu-kvm.patch [bz#1660208] - Resolves: bz#1655820 (Can't migarate between rhel8 and rhel7 when guest has device "video") - Resolves: bz#1659604 (8->7 migration failed: qemu-kvm: error: failed to set MSR 0x4b564d02 to 0x27fc13285) - Resolves: bz#1660208 (qemu-kvm: Should depend on the architecture-appropriate guest firmware)
67 lines
2.1 KiB
Diff
67 lines
2.1 KiB
Diff
From a75b0a6a7ef6e14e3b65b34bbc6935491d3b016e Mon Sep 17 00:00:00 2001
|
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
Date: Fri, 14 Dec 2018 17:02:07 +0000
|
|
Subject: [PATCH 2/8] compat: Generic HW_COMPAT_RHEL7_6
|
|
|
|
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
Message-id: <20181214170211.14267-3-dgilbert@redhat.com>
|
|
Patchwork-id: 83516
|
|
O-Subject: [RHEL8 qemu-kvm PATCH v3 2/6] compat: Generic HW_COMPAT_RHEL7_6
|
|
Bugzilla: 1655820
|
|
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
|
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
|
Add the HW_COMPAT_RHEL7_6 macro based on the 2.12 and 3.0 macros.
|
|
|
|
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
include/hw/compat.h | 29 +++++++++++++++++++++++++++++
|
|
1 file changed, 29 insertions(+)
|
|
|
|
diff --git a/include/hw/compat.h b/include/hw/compat.h
|
|
index f08cc7c..40db243 100644
|
|
--- a/include/hw/compat.h
|
|
+++ b/include/hw/compat.h
|
|
@@ -513,5 +513,34 @@
|
|
.value = "off",\
|
|
},
|
|
|
|
+/* The same as HW_COMPAT_3_0 + HW_COMPAT_2_12
|
|
+ * except that
|
|
+ * there's nothing in 3_0
|
|
+ * migration.decompress-error-check=off was in 7.5 from bz 1584139
|
|
+ *
|
|
+ */
|
|
+#define HW_COMPAT_RHEL7_6 \
|
|
+ { /* HW_COMPAT_RHEL7_6 from HW_COMPAT_2_12 */ \
|
|
+ .driver = "hda-audio",\
|
|
+ .property = "use-timer",\
|
|
+ .value = "false",\
|
|
+ },{ /* HW_COMPAT_RHEL7_6 from HW_COMPAT_2_12 */ \
|
|
+ .driver = "cirrus-vga",\
|
|
+ .property = "global-vmstate",\
|
|
+ .value = "true",\
|
|
+ },{ /* HW_COMPAT_RHEL7_6 from HW_COMPAT_2_12 */ \
|
|
+ .driver = "VGA",\
|
|
+ .property = "global-vmstate",\
|
|
+ .value = "true",\
|
|
+ },{ /* HW_COMPAT_RHEL7_6 from HW_COMPAT_2_12 */ \
|
|
+ .driver = "vmware-svga",\
|
|
+ .property = "global-vmstate",\
|
|
+ .value = "true",\
|
|
+ },{ /* HW_COMPAT_RHEL7_6 from HW_COMPAT_2_12 */ \
|
|
+ .driver = "qxl-vga",\
|
|
+ .property = "global-vmstate",\
|
|
+ .value = "true",\
|
|
+ },
|
|
+
|
|
|
|
#endif /* HW_COMPAT_H */
|
|
--
|
|
1.8.3.1
|
|
|