mirror of https://github.com/xemu-project/xemu.git
machine: reject -smp dies!=1 for non-PC machines
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20210617155308.928754-11-pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
1e63fe6858
commit
0aebebb561
|
@ -746,6 +746,10 @@ static void smp_parse(MachineState *ms, SMPConfiguration *config, Error **errp)
|
||||||
unsigned cores = config->has_cores ? config->cores : 0;
|
unsigned cores = config->has_cores ? config->cores : 0;
|
||||||
unsigned threads = config->has_threads ? config->threads : 0;
|
unsigned threads = config->has_threads ? config->threads : 0;
|
||||||
|
|
||||||
|
if (config->has_dies && config->dies != 0 && config->dies != 1) {
|
||||||
|
error_setg(errp, "dies not supported by this machine's CPU topology");
|
||||||
|
}
|
||||||
|
|
||||||
/* compute missing values, prefer sockets over cores over threads */
|
/* compute missing values, prefer sockets over cores over threads */
|
||||||
if (cpus == 0 || sockets == 0) {
|
if (cpus == 0 || sockets == 0) {
|
||||||
cores = cores > 0 ? cores : 1;
|
cores = cores > 0 ? cores : 1;
|
||||||
|
|
Loading…
Reference in New Issue