[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v2 06/12] hw/cpu: Constrain CPU topology tree with max_limit
From: |
Zhao Liu |
Subject: |
[RFC v2 06/12] hw/cpu: Constrain CPU topology tree with max_limit |
Date: |
Thu, 19 Sep 2024 14:11:22 +0800 |
Apply max_limit to CPU topology and prevent the number of topology
devices from exceeding the max limitation configured by user.
Additionally, ensure that CPUs created from the CLI via custom topology
meet at least the requirements of smp.cpus. This guarantees that custom
topology will always have CPUs.
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
hw/core/machine.c | 4 ++++
hw/cpu/cpu-slot.c | 32 ++++++++++++++++++++++++++++++++
include/hw/cpu/cpu-slot.h | 1 +
include/hw/qdev-core.h | 5 +++++
4 files changed, 42 insertions(+)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index dedabd75c825..54fca9eb7265 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -1684,6 +1684,10 @@ void machine_run_board_post_init(MachineState *machine,
Error **errp)
{
MachineClass *machine_class = MACHINE_GET_CLASS(machine);
+ if (!machine_validate_topo_tree(machine, errp)) {
+ return;
+ }
+
if (machine_class->post_init) {
machine_class->post_init(machine);
}
diff --git a/hw/cpu/cpu-slot.c b/hw/cpu/cpu-slot.c
index 2d16a2729501..f2b9c412926f 100644
--- a/hw/cpu/cpu-slot.c
+++ b/hw/cpu/cpu-slot.c
@@ -47,6 +47,7 @@ static void cpu_slot_device_realize(DeviceListener *listener,
{
CPUSlot *slot = container_of(listener, CPUSlot, listener);
CPUTopoState *topo;
+ int max_children;
if (!object_dynamic_cast(OBJECT(dev), TYPE_CPU_TOPO)) {
return;
@@ -54,6 +55,13 @@ static void cpu_slot_device_realize(DeviceListener *listener,
topo = CPU_TOPO(dev);
cpu_slot_add_topo_info(slot, topo);
+
+ if (dev->parent_bus) {
+ max_children = slot->stat.entries[GET_CPU_TOPO_LEVEL(topo)].max_limit;
+ if (dev->parent_bus->num_children == max_children) {
+ qbus_mark_full(dev->parent_bus);
+ }
+ }
}
static void cpu_slot_del_topo_info(CPUSlot *slot, CPUTopoState *topo)
@@ -79,6 +87,10 @@ static void cpu_slot_device_unrealize(DeviceListener
*listener,
topo = CPU_TOPO(dev);
cpu_slot_del_topo_info(slot, topo);
+
+ if (dev->parent_bus) {
+ qbus_mask_full(dev->parent_bus);
+ }
}
DeviceListener cpu_slot_device_listener = {
@@ -443,3 +455,23 @@ bool machine_parse_custom_topo_config(MachineState *ms,
return true;
}
+
+bool machine_validate_topo_tree(MachineState *ms, Error **errp)
+{
+ int cpus;
+
+ if (!ms->topo || !ms->topo->custom_topo_enabled) {
+ return true;
+ }
+
+ cpus = ms->topo->stat.entries[CPU_TOPOLOGY_LEVEL_THREAD].total_instances;
+ if (cpus < ms->smp.cpus) {
+ error_setg(errp, "machine requires at least %d online CPUs, "
+ "but currently only %d CPUs",
+ ms->smp.cpus, cpus);
+ return false;
+ }
+
+ /* TODO: Add checks for other levels to honor more -smp parameters. */
+ return true;
+}
diff --git a/include/hw/cpu/cpu-slot.h b/include/hw/cpu/cpu-slot.h
index 8d7e35aa1851..f56a0b08dca4 100644
--- a/include/hw/cpu/cpu-slot.h
+++ b/include/hw/cpu/cpu-slot.h
@@ -84,5 +84,6 @@ int get_max_topo_by_level(const MachineState *ms,
CpuTopologyLevel level);
bool machine_parse_custom_topo_config(MachineState *ms,
const SMPConfiguration *config,
Error **errp);
+bool machine_validate_topo_tree(MachineState *ms, Error **errp);
#endif /* CPU_SLOT_H */
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
index ddcaa329e3ec..3f2117e08774 100644
--- a/include/hw/qdev-core.h
+++ b/include/hw/qdev-core.h
@@ -1063,6 +1063,11 @@ static inline void qbus_mark_full(BusState *bus)
bus->full = true;
}
+static inline void qbus_mask_full(BusState *bus)
+{
+ bus->full = false;
+}
+
void device_listener_register(DeviceListener *listener);
void device_listener_unregister(DeviceListener *listener);
--
2.34.1
- [RFC v2 00/12] Introduce Hybrid CPU Topology via Custom Topology Tree, Zhao Liu, 2024/09/19
- [RFC v2 01/12] qdev: Allow qdev_device_add() to add specific category device, Zhao Liu, 2024/09/19
- [RFC v2 02/12] qdev: Introduce new device category to cover basic topology device, Zhao Liu, 2024/09/19
- [RFC v2 05/12] hw/core/machine: Introduce custom CPU topology with max limitations, Zhao Liu, 2024/09/19
- [RFC v2 03/12] system/vl: Create CPU topology devices from CLI early, Zhao Liu, 2024/09/19
- [RFC v2 07/12] hw/core: Re-implement topology helpers to honor max limitations, Zhao Liu, 2024/09/19
- [RFC v2 09/12] i386: Introduce x86 CPU core abstractions, Zhao Liu, 2024/09/19
- [RFC v2 04/12] hw/core/machine: Split machine initialization around qemu_add_cli_devices_early(), Zhao Liu, 2024/09/19
- [RFC v2 08/12] hw/i386: Use get_max_topo_by_level() to get topology information, Zhao Liu, 2024/09/19
- [RFC v2 06/12] hw/cpu: Constrain CPU topology tree with max_limit,
Zhao Liu <=
- [RFC v2 11/12] i386/machine: Split machine initialization after CPU creation into post_init(), Zhao Liu, 2024/09/19
- [RFC v2 10/12] i386/cpu: Support Intel hybrid CPUID, Zhao Liu, 2024/09/19
- [RFC v2 12/12] i386: Support custom topology for microvm, pc-i440fx and pc-q35, Zhao Liu, 2024/09/19