aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorYanan Wang <wangyanan55@huawei.com>2021-09-29 10:58:13 +0800
committerPaolo Bonzini <pbonzini@redhat.com>2021-10-01 15:28:19 +0200
commit7687b2b3edc3f29ad58e8d6593d5c10dde406c34 (patch)
treecdbb082ae39cfa372366a2ca430d9f9e686c3769 /include
parente4a97a893bcd7511aba812969d1fa6fe42dc1931 (diff)
downloadqemu-7687b2b3edc3f29ad58e8d6593d5c10dde406c34.zip
qemu-7687b2b3edc3f29ad58e8d6593d5c10dde406c34.tar.gz
qemu-7687b2b3edc3f29ad58e8d6593d5c10dde406c34.tar.bz2
machine: Remove smp_parse callback from MachineClass
Now we have a generic smp parser for all arches, and there will not be any other arch specific ones, so let's remove the callback from MachineClass and call the parser directly. Signed-off-by: Yanan Wang <wangyanan55@huawei.com> Reviewed-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20210929025816.21076-14-wangyanan55@huawei.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/boards.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h
index 72a23e4..fa284e0 100644
--- a/include/hw/boards.h
+++ b/include/hw/boards.h
@@ -177,10 +177,6 @@ typedef struct {
* kvm-type may be NULL if it is not needed.
* @numa_mem_supported:
* true if '--numa node.mem' option is supported and false otherwise
- * @smp_parse:
- * The function pointer to hook different machine specific functions for
- * parsing "smp-opts" from QemuOpts to MachineState::CpuTopology and more
- * machine specific topology fields, such as smp_dies for PCMachine.
* @hotplug_allowed:
* If the hook is provided, then it'll be called for each device
* hotplug to check whether the device hotplug is allowed. Return
@@ -217,7 +213,6 @@ struct MachineClass {
void (*reset)(MachineState *state);
void (*wakeup)(MachineState *state);
int (*kvm_type)(MachineState *machine, const char *arg);
- void (*smp_parse)(MachineState *ms, SMPConfiguration *config, Error **errp);
BlockInterfaceType block_default_type;
int units_per_default_bus;