diff options
author | Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br> | 2021-05-26 17:21:03 -0300 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-06-03 18:10:31 +1000 |
commit | de3036acb4f2cbb80ef8d827ce2b7ec9104a0b14 (patch) | |
tree | 337c97386ca8f3506266f080d6ece2cc8a998050 /monitor/misc.c | |
parent | 169989a416668c819c67dfc683062185d9eeddd5 (diff) | |
download | qemu-de3036acb4f2cbb80ef8d827ce2b7ec9104a0b14.zip qemu-de3036acb4f2cbb80ef8d827ce2b7ec9104a0b14.tar.gz qemu-de3036acb4f2cbb80ef8d827ce2b7ec9104a0b14.tar.bz2 |
monitor: removed cpustats command
Since ppc was the last architecture to collect these statistics and
it is currently phasing this collection out, the command that would query
this information is being removed.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br>
Message-Id: <20210526202104.127910-5-bruno.larsen@eldorado.org.br>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Luis Pires <luis.pires@eldorado.org.br>
Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'monitor/misc.c')
-rw-r--r-- | monitor/misc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/monitor/misc.c b/monitor/misc.c index f3a393e..1539e18 100644 --- a/monitor/misc.c +++ b/monitor/misc.c @@ -369,17 +369,6 @@ static void hmp_info_history(Monitor *mon, const QDict *qdict) } } -static void hmp_info_cpustats(Monitor *mon, const QDict *qdict) -{ - CPUState *cs = mon_get_cpu(mon); - - if (!cs) { - monitor_printf(mon, "No CPU available\n"); - return; - } - cpu_dump_statistics(cs, 0); -} - static void hmp_info_trace_events(Monitor *mon, const QDict *qdict) { const char *name = qdict_get_try_str(qdict, "name"); |