| Submitter | Luiz Capitulino |
|---|---|
| Date | Oct. 13, 2009, 4:57 p.m. |
| Message ID | <1255453026-18637-10-git-send-email-lcapitulino@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/35881/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/monitor.c b/monitor.c index 6f0ad11..5d7c816 100644 --- a/monitor.c +++ b/monitor.c @@ -1717,10 +1717,9 @@ static void do_info_balloon(Monitor *mon, QObject **ret_data) actual = qemu_balloon_status(); if (kvm_enabled() && !kvm_has_sync_mmu()) - monitor_printf(mon, "Using KVM without synchronous MMU, " - "ballooning disabled\n"); + qemu_error_structed(QERR_BAL_MMU, NULL); else if (actual == 0) - monitor_printf(mon, "Ballooning not activated in VM\n"); + qemu_error_structed(QERR_BAL_DIS, NULL); else *ret_data = QOBJECT(qint_from_int((int)(actual >> 20))); }
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> --- monitor.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-)