diff options
author | Alistair Francis | 2017-10-03 22:05:09 +0200 |
---|---|---|
committer | Eduardo Habkost | 2017-10-10 04:21:52 +0200 |
commit | c9cf636d48fcb1d797077e1ffa456a3d324156bc (patch) | |
tree | 9b19e1de4f39eddd18981b05c90fe22c9ef4ce8f /include/hw/boards.h | |
parent | qom/cpu: move cpu_model null check to cpu_class_by_name() (diff) | |
download | qemu-c9cf636d48fcb1d797077e1ffa456a3d324156bc.tar.gz qemu-c9cf636d48fcb1d797077e1ffa456a3d324156bc.tar.xz qemu-c9cf636d48fcb1d797077e1ffa456a3d324156bc.zip |
machine: Add a valid_cpu_types property
This patch add a MachineClass element that can be set in the machine C
code to specify a list of supported CPU types. If the supported CPU
types are specified the user enter CPU (by -cpu at runtime) is checked
against the supported types and QEMU exits if they aren't supported.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Message-Id: <b8474e9d2e0a219d9bac901342f983b13d009301.1507059418.git.alistair.francis@xilinx.com>
[ehabkost: removed assert(), rewrote comment]
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/hw/boards.h')
-rw-r--r-- | include/hw/boards.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index 156e0a5701..191a5b3cd8 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -191,6 +191,7 @@ struct MachineClass { bool has_hotpluggable_cpus; bool ignore_memory_transaction_failures; int numa_mem_align_shift; + const char **valid_cpu_types; void (*numa_auto_assign_ram)(MachineClass *mc, NodeInfo *nodes, int nb_nodes, ram_addr_t size); |