mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
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>
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user