diff options
author | Yanan Wang <wangyanan55@huawei.com> | 2021-09-29 10:58:14 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-10-01 15:29:15 +0200 |
commit | 2b52619994ab48504c5fc0d32a1af24159405ce0 (patch) | |
tree | 9e60a62651c29e27cfef0fe5db0a5aab73ec6b68 /hw/core/machine.c | |
parent | 7687b2b3edc3f29ad58e8d6593d5c10dde406c34 (diff) | |
download | qemu-2b52619994ab48504c5fc0d32a1af24159405ce0.zip qemu-2b52619994ab48504c5fc0d32a1af24159405ce0.tar.gz qemu-2b52619994ab48504c5fc0d32a1af24159405ce0.tar.bz2 |
machine: Move smp_prefer_sockets to struct SMPCompatProps
Now we have a common structure SMPCompatProps used to store information
about SMP compatibility stuff, so we can also move smp_prefer_sockets
there for cleaner code.
No functional change intended.
Signed-off-by: Yanan Wang <wangyanan55@huawei.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20210929025816.21076-15-wangyanan55@huawei.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/core/machine.c')
-rw-r--r-- | hw/core/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index 8b0f1ae..54f04a5 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -817,7 +817,7 @@ static void smp_parse(MachineState *ms, SMPConfiguration *config, Error **errp) } else { maxcpus = maxcpus > 0 ? maxcpus : cpus; - if (mc->smp_prefer_sockets) { + if (mc->smp_props.prefer_sockets) { /* prefer sockets over cores before 6.2 */ if (sockets == 0) { cores = cores > 0 ? cores : 1; |