summaryrefslogtreecommitdiffstats
path: root/monitor
diff options
context:
space:
mode:
authorPeter Maydell2022-07-21 12:13:01 +0200
committerPeter Maydell2022-07-21 12:13:01 +0200
commit5288bee45fbd33203b61f8c76e41b15bb5913e6e (patch)
treee1ffe86238a1f386eecf134befcfe92ba6e79d85 /monitor
parentMerge tag 'pull-migration-20220720c' of https://gitlab.com/dagrh/qemu into st... (diff)
parentutil: Fix broken build on Haiku (diff)
downloadqemu-5288bee45fbd33203b61f8c76e41b15bb5913e6e.tar.gz
qemu-5288bee45fbd33203b61f8c76e41b15bb5913e6e.tar.xz
qemu-5288bee45fbd33203b61f8c76e41b15bb5913e6e.zip
Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging
* Boolean statistics for KVM * Fix build on Haiku # gpg: Signature made Tue 19 Jul 2022 10:32:34 BST # gpg: using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg: issuer "pbonzini@redhat.com" # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" [full] # gpg: aka "Paolo Bonzini <pbonzini@redhat.com>" [full] # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * tag 'for-upstream' of https://gitlab.com/bonzini/qemu: util: Fix broken build on Haiku kvm: add support for boolean statistics monitor: add support for boolean statistics Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'monitor')
-rw-r--r--monitor/hmp-cmds.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
index a6dc79e0d5..c6cd6f91dd 100644
--- a/monitor/hmp-cmds.c
+++ b/monitor/hmp-cmds.c
@@ -2342,6 +2342,8 @@ static void print_stats_results(Monitor *mon, StatsTarget target,
if (stats_value->type == QTYPE_QNUM) {
monitor_printf(mon, ": %" PRId64 "\n", stats_value->u.scalar);
+ } else if (stats_value->type == QTYPE_QBOOL) {
+ monitor_printf(mon, ": %s\n", stats_value->u.boolean ? "yes" : "no");
} else if (stats_value->type == QTYPE_QLIST) {
uint64List *list;
int i;