diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-11-18 23:05:36 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:21 -0600 |
commit | 5d6c37fb323ff5703d8c4c9cedec5763bd003b7e (patch) | |
tree | 3386ac47fb40f8bd7d39c24351c8eef37f2f7b58 /monitor.c | |
parent | 82a60711dd5857ec79effd8ef4a2c29bf42540c0 (diff) |
monitor: do_info_balloon(): Use QError
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1722,10 +1722,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_new(QERR_KVM_MISSING_CAP, "synchronous MMU", "balloon"); else if (actual == 0) - monitor_printf(mon, "Ballooning not activated in VM\n"); + qemu_error_new(QERR_DEVICE_NOT_ACTIVE, "balloon"); else *ret_data = QOBJECT(qint_from_int((int)(actual >> 20))); } |