diff options
author | Philippe Mathieu-Daudé | 2022-03-14 15:01:08 +0100 |
---|---|---|
committer | Thomas Huth | 2022-03-16 08:43:10 +0100 |
commit | 377bf6f37da11d14641a0e973c4ed272259cca9c (patch) | |
tree | f7c029e8be6f0f884203b16e2dc1cda28f431a03 /softmmu | |
parent | accel/tcg: Fix cpu_ldq_be_mmu typo (diff) | |
download | qemu-377bf6f37da11d14641a0e973c4ed272259cca9c.tar.gz qemu-377bf6f37da11d14641a0e973c4ed272259cca9c.tar.xz qemu-377bf6f37da11d14641a0e973c4ed272259cca9c.zip |
softmmu: List CPU types again
Commit e0220bb5b2 made cpus.c target-agnostic but didn't notice
the cpu_list() function is only defined in target-specific code
in "cpu.h". Move list_cpus() declaration to "exec/cpu-common.h"
because this function is not softmmu-specific and can also be
used by user-mode, along with moving its implementation to cpu.c,
which is compiled per target.
Fixes: e0220bb5b2 ("softmmu: Build target-agnostic objects once")
Reported-by: Max Filippov <jcmvbkbc@gmail.com>
Suggested-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220314140108.26222-1-philippe.mathieu.daude@gmail.com>
Tested-by: Max Filippov <jcmvbkbc@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r-- | softmmu/cpus.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/softmmu/cpus.c b/softmmu/cpus.c index e1d84c8ccb..7b75bb66d5 100644 --- a/softmmu/cpus.c +++ b/softmmu/cpus.c @@ -728,14 +728,6 @@ int vm_stop_force_state(RunState state) } } -void list_cpus(const char *optarg) -{ - /* XXX: implement xxx_cpu_list for targets that still miss it */ -#if defined(cpu_list) - cpu_list(); -#endif -} - void qmp_memsave(int64_t addr, int64_t size, const char *filename, bool has_cpu, int64_t cpu_index, Error **errp) { |