qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v4 05/33] target/alpha: Use generic helper to show CPU model


From: Richard Henderson
Subject: Re: [PATCH v4 05/33] target/alpha: Use generic helper to show CPU model names
Date: Wed, 1 Nov 2023 21:01:34 -0700
User-agent: Mozilla Thunderbird

On 11/1/23 17:24, Gavin Shan wrote:
For target/alpha, the registered CPU type name is always the combination
of the CPU model name and suffix. Use cpu_model_from_type() to show the
CPU model names instead of the CPU type names.

Signed-off-by: Gavin Shan <gshan@redhat.com>
---
  target/alpha/cpu.c | 6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/target/alpha/cpu.c b/target/alpha/cpu.c
index 9436859c7b..d4b35434cd 100644
--- a/target/alpha/cpu.c
+++ b/target/alpha/cpu.c
@@ -89,9 +89,11 @@ static void alpha_cpu_realizefn(DeviceState *dev, Error 
**errp)
static void alpha_cpu_list_entry(gpointer data, gpointer user_data)
  {
-    ObjectClass *oc = data;
+    const char *typename = object_class_get_name(OBJECT_CLASS(data));
+    char *model = cpu_model_from_type(typename);

g_autofree


r~

- qemu_printf(" %s\n", object_class_get_name(oc));
+    qemu_printf("  %s\n", model);
+    g_free(model);
  }
void alpha_cpu_list(void)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]