457e3fe8c2
- kvm-arm-virt-Register-iommu-as-a-class-property.patch [bz#1838608] - kvm-arm-virt-Register-its-as-a-class-property.patch [bz#1838608] - kvm-arm-virt-Enable-ARM-RAS-support.patch [bz#1838608] - kvm-block-Fix-in_flight-leak-in-request-padding-error-pa.patch [bz#1972079] - kvm-spec-Remove-buildldflags.patch [bz#1973029] - kvm-spec-Use-make_build-macro.patch [bz#1973029] - kvm-spec-Drop-make-install-sharedir-and-datadir-usage.patch [bz#1973029] - kvm-spec-use-make_install-macro.patch [bz#1973029] - kvm-spec-parallelize-make-check.patch [bz#1973029] - kvm-spec-Drop-explicit-build-id.patch [bz#1973029] - kvm-spec-use-build_ldflags.patch [bz#1973029] - kvm-Move-virtiofsd-to-separate-package.patch [bz#1979728] - kvm-Utilize-firmware-configure-option.patch [bz#1980139] - Resolves: bz#1838608 (aarch64: Enable ARMv8 RAS virtualization support) - Resolves: bz#1972079 (Windows Installation blocked on 4k disk when using blk+raw+iothread) - Resolves: bz#1973029 (Spec file cleanups) - Resolves: bz#1979728 (Split out virtiofsd subpackage) - Resolves: bz#1980139 (Use configure --firmwarepath more)
57 lines
2.3 KiB
Diff
57 lines
2.3 KiB
Diff
From 29d18bdaf3dad52a052b2b058cd8f74652a72f76 Mon Sep 17 00:00:00 2001
|
|
From: Eric Auger <eric.auger@redhat.com>
|
|
Date: Thu, 8 Jul 2021 05:14:47 -0400
|
|
Subject: [PATCH 02/13] arm/virt: Register its as a class property
|
|
|
|
RH-Author: Eric Auger <eric.auger@redhat.com>
|
|
RH-MergeRequest: 19: arm/virt: Support RAS
|
|
RH-Commit: [2/3] 95debacfd59d06ed2dcaeb120b20a280ff515434 (eauger1/centos-qemu-kvm)
|
|
RH-Bugzilla: 1838608
|
|
RH-Acked-by: Gavin Shan <gshan@redhat.com>
|
|
RH-Acked-by: Andrew Jones <drjones@redhat.com>
|
|
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
|
As done for highmem, gic-version, iommu, let's register the its property
|
|
as a class property. This is closer to the upstream code. This
|
|
change was originally made by upstream commit:
|
|
b91def7b8382 ("arm/virt: Register most properties as class properties")
|
|
|
|
Signed-off-by: Eric Auger <eric.auger@redhat.com>
|
|
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
---
|
|
hw/arm/virt.c | 11 ++++++-----
|
|
1 file changed, 6 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
|
|
index bdae24a753..fe1111d527 100644
|
|
--- a/hw/arm/virt.c
|
|
+++ b/hw/arm/virt.c
|
|
@@ -3013,6 +3013,12 @@ static void rhel_machine_class_init(ObjectClass *oc, void *data)
|
|
"Set the IOMMU type. "
|
|
"Valid values are none and smmuv3");
|
|
|
|
+ object_class_property_add_bool(oc, "its", virt_get_its,
|
|
+ virt_set_its);
|
|
+ object_class_property_set_description(oc, "its",
|
|
+ "Set on/off to enable/disable "
|
|
+ "ITS instantiation");
|
|
+
|
|
object_class_property_add_str(oc, "x-oem-id",
|
|
virt_get_oem_id,
|
|
virt_set_oem_id);
|
|
@@ -3052,11 +3058,6 @@ static void rhel_virt_instance_init(Object *obj)
|
|
} else {
|
|
/* Default allows ITS instantiation */
|
|
vms->its = true;
|
|
- object_property_add_bool(obj, "its", virt_get_its,
|
|
- virt_set_its);
|
|
- object_property_set_description(obj, "its",
|
|
- "Set on/off to enable/disable "
|
|
- "ITS instantiation");
|
|
}
|
|
|
|
/* Default disallows iommu instantiation */
|
|
--
|
|
2.27.0
|
|
|