|
@@ -682,6 +682,11 @@ void machine_set_cpu_numa_node(MachineState *machine,
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (props->has_cluster_id && !slot->props.has_cluster_id) {
|
|
|
|
+ error_setg(errp, "cluster-id is not supported");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (props->has_socket_id && !slot->props.has_socket_id) {
|
|
if (props->has_socket_id && !slot->props.has_socket_id) {
|
|
error_setg(errp, "socket-id is not supported");
|
|
error_setg(errp, "socket-id is not supported");
|
|
return;
|
|
return;
|
|
@@ -701,6 +706,11 @@ void machine_set_cpu_numa_node(MachineState *machine,
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (props->has_cluster_id &&
|
|
|
|
+ props->cluster_id != slot->props.cluster_id) {
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
if (props->has_die_id && props->die_id != slot->props.die_id) {
|
|
if (props->has_die_id && props->die_id != slot->props.die_id) {
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
@@ -995,6 +1005,12 @@ static char *cpu_slot_to_string(const CPUArchId *cpu)
|
|
}
|
|
}
|
|
g_string_append_printf(s, "die-id: %"PRId64, cpu->props.die_id);
|
|
g_string_append_printf(s, "die-id: %"PRId64, cpu->props.die_id);
|
|
}
|
|
}
|
|
|
|
+ if (cpu->props.has_cluster_id) {
|
|
|
|
+ if (s->len) {
|
|
|
|
+ g_string_append_printf(s, ", ");
|
|
|
|
+ }
|
|
|
|
+ g_string_append_printf(s, "cluster-id: %"PRId64, cpu->props.cluster_id);
|
|
|
|
+ }
|
|
if (cpu->props.has_core_id) {
|
|
if (cpu->props.has_core_id) {
|
|
if (s->len) {
|
|
if (s->len) {
|
|
g_string_append_printf(s, ", ");
|
|
g_string_append_printf(s, ", ");
|