[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use
From: |
Alistair Francis |
Subject: |
[Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model |
Date: |
Thu, 1 Feb 2018 16:42:05 -0800 |
As cpu_type is not a user visible string let's convert the
valid_cpu_types to compare against cpu_model instead. This way we have a
user friendly string to report back.
Once we have a cpu_type to cpu_model conversion this patch should be
reverted and we should use cpu_type instead.
Signed-off-by: Alistair Francis <address@hidden>
---
hw/core/machine.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/hw/core/machine.c b/hw/core/machine.c
index cdc1163dc6..de5bac1c84 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -776,13 +776,12 @@ void machine_run_board_init(MachineState *machine)
/* If the machine supports the valid_cpu_types check and the user
* specified a CPU with -cpu check here that the user CPU is supported.
*/
- if (machine_class->valid_cpu_types && machine->cpu_type) {
- ObjectClass *class = object_class_by_name(machine->cpu_type);
+ if (machine_class->valid_cpu_types && machine->cpu_model) {
int i;
for (i = 0; machine_class->valid_cpu_types[i]; i++) {
- if (object_class_dynamic_cast(class,
- machine_class->valid_cpu_types[i])) {
+ if (!strcmp(machine->cpu_model,
+ machine_class->valid_cpu_types[i])) {
/* The user specificed CPU is in the valid field, we are
* good to go.
*/
@@ -792,8 +791,8 @@ void machine_run_board_init(MachineState *machine)
if (!machine_class->valid_cpu_types[i]) {
/* The user specified CPU is not valid */
- error_report("Invalid CPU type: %s", machine->cpu_type);
- error_printf("The valid types are: %s",
+ error_report("Invalid CPU model: %s", machine->cpu_model);
+ error_printf("The valid models are: %s",
machine_class->valid_cpu_types[0]);
for (i = 1; machine_class->valid_cpu_types[i]; i++) {
error_printf(", %s", machine_class->valid_cpu_types[i]);
--
2.14.1
- [Qemu-devel] [PATCH v5 0/6] Add a valid_cpu_types property, Alistair Francis, 2018/02/01
- [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model,
Alistair Francis <=
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Eduardo Habkost, 2018/02/02
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Igor Mammedov, 2018/02/05
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Eduardo Habkost, 2018/02/05
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Igor Mammedov, 2018/02/05
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Eduardo Habkost, 2018/02/05
- Re: [Qemu-devel] [PATCH v5 1/6] machine: Convert the valid cpu types to use cpu_model, Igor Mammedov, 2018/02/06
[Qemu-devel] [PATCH v5 4/6] raspi: Specify the valid CPUs, Alistair Francis, 2018/02/01