cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
60061b
From 07e2094cd86c1be349c0bdda69acd1857afacb66 Mon Sep 17 00:00:00 2001
60061b
From: Eric Auger <eric.auger@redhat.com>
60061b
Date: Mon, 20 Dec 2021 16:04:59 +0100
60061b
Subject: [PATCH 2/6] hw/arm/virt: Register "its" as a class property
60061b
60061b
RH-Author: Eric Auger <eric.auger@redhat.com>
60061b
RH-MergeRequest: 95: hw/arm/virt: Add virt-rhel8.6.0 machine type
60061b
RH-Commit: [2/5] 4ddfa57495578127770f93689c4d9f111a12b91c
60061b
RH-Bugzilla: 2031039
60061b
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
60061b
RH-Acked-by: Andrew Jones <drjones@redhat.com>
60061b
RH-Acked-by: Gavin Shan <gshan@redhat.com>
60061b
60061b
branch: rhel-8.6.0
60061b
Brew: 42212069
60061b
Upstream: no
60061b
60061b
Register "its" as a class property.  This mirrors what was done
60061b
in commit 27edeeaafe43 ("virt: Register "its" as class property").
60061b
60061b
Signed-off-by: Eric Auger <eric.auger@redhat.com>
60061b
---
60061b
 hw/arm/virt.c | 11 ++++++-----
60061b
 1 file changed, 6 insertions(+), 5 deletions(-)
60061b
60061b
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
60061b
index 684ffce52e..d679391eb0 100644
60061b
--- a/hw/arm/virt.c
60061b
+++ b/hw/arm/virt.c
60061b
@@ -3143,6 +3143,12 @@ static void rhel_machine_class_init(ObjectClass *oc, void *data)
60061b
                                           "Set on/off to enable/disable "
60061b
                                           "bypass_iommu for default root bus");
60061b
 
60061b
+    object_class_property_add_bool(oc, "its", virt_get_its,
60061b
+                                   virt_set_its);
60061b
+    object_class_property_set_description(oc, "its",
60061b
+                                          "Set on/off to enable/disable "
60061b
+                                          "ITS instantiation");
60061b
+
60061b
     object_class_property_add_str(oc, "x-oem-id",
60061b
                                   virt_get_oem_id,
60061b
                                   virt_set_oem_id);
60061b
@@ -3182,11 +3188,6 @@ static void rhel_virt_instance_init(Object *obj)
60061b
     } else {
60061b
         /* Default allows ITS instantiation */
60061b
         vms->its = true;
60061b
-        object_property_add_bool(obj, "its", virt_get_its,
60061b
-                                 virt_set_its);
60061b
-        object_property_set_description(obj, "its",
60061b
-                                        "Set on/off to enable/disable "
60061b
-                                        "ITS instantiation");
60061b
     }
60061b
 
60061b
     /* Default disallows iommu instantiation */
60061b
-- 
60061b
2.27.0
60061b