From patchwork Wed Nov 4 20:04:07 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [8/8] monitor: do_info_balloon(): use QError Date: Wed, 04 Nov 2009 10:04:07 -0000 From: Luiz Capitulino X-Patchwork-Id: 37620 Message-Id: <1257365047-25895-9-git-send-email-lcapitulino@redhat.com> To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, aliguori@us.ibm.com, kraxel@redhat.com, hollisb@us.ibm.com Signed-off-by: Luiz Capitulino --- monitor.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/monitor.c b/monitor.c index 0e6e21b..423c6b5 100644 --- a/monitor.c +++ b/monitor.c @@ -1717,10 +1717,11 @@ 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_new(QERR_SER_UNAV, + "Using KVM without synchronous MMU, ballooning disabled", + NULL); else if (actual == 0) - monitor_printf(mon, "Ballooning not activated in VM\n"); + qemu_error_new(QERR_SER_UNAV, "Ballooning not activated in VM", NULL); else *ret_data = QOBJECT(qint_from_int((int)(actual >> 20))); }