From patchwork Fri Dec 18 15:25:05 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [7/7] monitor: do_balloon(): Use 'M' argument type Date: Fri, 18 Dec 2009 05:25:05 -0000 From: Luiz Capitulino X-Patchwork-Id: 41412 Message-Id: <1261149905-7622-8-git-send-email-lcapitulino@redhat.com> To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com This makes do_balloon() accept megabyte values from the user Monitor while accepting byte values for QMP. Signed-off-by: Luiz Capitulino --- monitor.c | 3 +-- qemu-monitor.hx | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/monitor.c b/monitor.c index f779680..6f5b90d 100644 --- a/monitor.c +++ b/monitor.c @@ -2083,8 +2083,7 @@ static void do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data) { if (balloon_get_value()) { /* ballooning is active */ - ram_addr_t value = qdict_get_int(qdict, "value"); - qemu_balloon(value << 20); + qemu_balloon(qdict_get_int(qdict, "value")); } } diff --git a/qemu-monitor.hx b/qemu-monitor.hx index 338e30e..aac0f3e 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -887,7 +887,7 @@ ETEXI { .name = "balloon", - .args_type = "value:i", + .args_type = "value:M", .params = "target", .help = "request VM to change it's memory allocation (in MB)", .user_print = monitor_user_noop,