thebeanogamer / rpms / qemu-kvm

Forked from rpms/qemu-kvm 7 months ago
Clone
29b115
From e97c563f7146098119839aa146a6f25070eb7148 Mon Sep 17 00:00:00 2001
29b115
From: Gavin Shan <gshan@redhat.com>
29b115
Date: Wed, 11 May 2022 18:01:02 +0800
29b115
Subject: [PATCH 01/16] qapi/machine.json: Add cluster-id
29b115
29b115
RH-Author: Gavin Shan <gshan@redhat.com>
29b115
RH-MergeRequest: 86: hw/arm/virt: Fix the default CPU topology
29b115
RH-Commit: [1/6] 44d7d83008c6d28485ae44f7cced792f4987b919 (gwshan/qemu-rhel-9)
29b115
RH-Bugzilla: 2041823
29b115
RH-Acked-by: Eric Auger <eric.auger@redhat.com>
29b115
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
29b115
RH-Acked-by: Andrew Jones <drjones@redhat.com>
29b115
29b115
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2041823
29b115
29b115
This adds cluster-id in CPU instance properties, which will be used
29b115
by arm/virt machine. Besides, the cluster-id is also verified or
29b115
dumped in various spots:
29b115
29b115
  * hw/core/machine.c::machine_set_cpu_numa_node() to associate
29b115
    CPU with its NUMA node.
29b115
29b115
  * hw/core/machine.c::machine_numa_finish_cpu_init() to record
29b115
    CPU slots with no NUMA mapping set.
29b115
29b115
  * hw/core/machine-hmp-cmds.c::hmp_hotpluggable_cpus() to dump
29b115
    cluster-id.
29b115
29b115
Signed-off-by: Gavin Shan <gshan@redhat.com>
29b115
Reviewed-by: Yanan Wang <wangyanan55@huawei.com>
29b115
Acked-by: Igor Mammedov <imammedo@redhat.com>
29b115
Message-id: 20220503140304.855514-2-gshan@redhat.com
29b115
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
29b115
(cherry picked from commit 1dcf7001d4bae651129d46d5628b29e93a411d0b)
29b115
Signed-off-by: Gavin Shan <gshan@redhat.com>
29b115
---
29b115
 hw/core/machine-hmp-cmds.c |  4 ++++
29b115
 hw/core/machine.c          | 16 ++++++++++++++++
29b115
 qapi/machine.json          |  6 ++++--
29b115
 3 files changed, 24 insertions(+), 2 deletions(-)
29b115
29b115
diff --git a/hw/core/machine-hmp-cmds.c b/hw/core/machine-hmp-cmds.c
29b115
index 4e2f319aeb..5cb5eecbfc 100644
29b115
--- a/hw/core/machine-hmp-cmds.c
29b115
+++ b/hw/core/machine-hmp-cmds.c
29b115
@@ -77,6 +77,10 @@ void hmp_hotpluggable_cpus(Monitor *mon, const QDict *qdict)
29b115
         if (c->has_die_id) {
29b115
             monitor_printf(mon, "    die-id: \"%" PRIu64 "\"\n", c->die_id);
29b115
         }
29b115
+        if (c->has_cluster_id) {
29b115
+            monitor_printf(mon, "    cluster-id: \"%" PRIu64 "\"\n",
29b115
+                           c->cluster_id);
29b115
+        }
29b115
         if (c->has_core_id) {
29b115
             monitor_printf(mon, "    core-id: \"%" PRIu64 "\"\n", c->core_id);
29b115
         }
29b115
diff --git a/hw/core/machine.c b/hw/core/machine.c
29b115
index dffc3ef4ab..168f4de910 100644
29b115
--- a/hw/core/machine.c
29b115
+++ b/hw/core/machine.c
29b115
@@ -890,6 +890,11 @@ void machine_set_cpu_numa_node(MachineState *machine,
29b115
             return;
29b115
         }
29b115
 
29b115
+        if (props->has_cluster_id && !slot->props.has_cluster_id) {
29b115
+            error_setg(errp, "cluster-id is not supported");
29b115
+            return;
29b115
+        }
29b115
+
29b115
         if (props->has_socket_id && !slot->props.has_socket_id) {
29b115
             error_setg(errp, "socket-id is not supported");
29b115
             return;
29b115
@@ -909,6 +914,11 @@ void machine_set_cpu_numa_node(MachineState *machine,
29b115
                 continue;
29b115
         }
29b115
 
29b115
+        if (props->has_cluster_id &&
29b115
+            props->cluster_id != slot->props.cluster_id) {
29b115
+                continue;
29b115
+        }
29b115
+
29b115
         if (props->has_die_id && props->die_id != slot->props.die_id) {
29b115
                 continue;
29b115
         }
29b115
@@ -1203,6 +1213,12 @@ static char *cpu_slot_to_string(const CPUArchId *cpu)
29b115
         }
29b115
         g_string_append_printf(s, "die-id: %"PRId64, cpu->props.die_id);
29b115
     }
29b115
+    if (cpu->props.has_cluster_id) {
29b115
+        if (s->len) {
29b115
+            g_string_append_printf(s, ", ");
29b115
+        }
29b115
+        g_string_append_printf(s, "cluster-id: %"PRId64, cpu->props.cluster_id);
29b115
+    }
29b115
     if (cpu->props.has_core_id) {
29b115
         if (s->len) {
29b115
             g_string_append_printf(s, ", ");
29b115
diff --git a/qapi/machine.json b/qapi/machine.json
29b115
index d25a481ce4..4c417e32a5 100644
29b115
--- a/qapi/machine.json
29b115
+++ b/qapi/machine.json
29b115
@@ -868,10 +868,11 @@
29b115
 # @node-id: NUMA node ID the CPU belongs to
29b115
 # @socket-id: socket number within node/board the CPU belongs to
29b115
 # @die-id: die number within socket the CPU belongs to (since 4.1)
29b115
-# @core-id: core number within die the CPU belongs to
29b115
+# @cluster-id: cluster number within die the CPU belongs to (since 7.1)
29b115
+# @core-id: core number within cluster the CPU belongs to
29b115
 # @thread-id: thread number within core the CPU belongs to
29b115
 #
29b115
-# Note: currently there are 5 properties that could be present
29b115
+# Note: currently there are 6 properties that could be present
29b115
 #       but management should be prepared to pass through other
29b115
 #       properties with device_add command to allow for future
29b115
 #       interface extension. This also requires the filed names to be kept in
29b115
@@ -883,6 +884,7 @@
29b115
   'data': { '*node-id': 'int',
29b115
             '*socket-id': 'int',
29b115
             '*die-id': 'int',
29b115
+            '*cluster-id': 'int',
29b115
             '*core-id': 'int',
29b115
             '*thread-id': 'int'
29b115
   }
29b115
-- 
29b115
2.31.1
29b115