qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH v6 04/17] Extend HMP command info cpus to display ac


From: Michael Mueller
Subject: [Qemu-devel] [PATCH v6 04/17] Extend HMP command info cpus to display accelerator id and model name
Date: Mon, 27 Apr 2015 16:53:18 +0200

The HMP command info cpus now displays the CPU model name and the
backing accelerator if part of the CPUState.

(qemu) info cpus
* CPU #0: (halted) model=2827-ga2 accel=kvm thread_id=1679

Signed-off-by: Michael Mueller <address@hidden>
Acked-by: Christian Borntraeger <address@hidden>
---
 hmp.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/hmp.c b/hmp.c
index f142d36..676d821 100644
--- a/hmp.c
+++ b/hmp.c
@@ -290,6 +290,13 @@ void hmp_info_cpus(Monitor *mon, const QDict *qdict)
             monitor_printf(mon, " (halted)");
         }
 
+        if (cpu->value->has_model) {
+            monitor_printf(mon, " model=%s", cpu->value->model);
+        }
+        if (cpu->value->has_accel) {
+            monitor_printf(mon, " accel=%s", 
AccelId_lookup[cpu->value->accel]);
+        }
+
         monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
     }
 
-- 
1.8.3.1




reply via email to

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