summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2009-12-18 13:25:05 -0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-19 08:26:28 -0600
commit5543b41167c1677a6a3d44c1ca727531c3315128 (patch)
treed6bb1cd376a54256ec6255ed6f076bf0afc3c5d2
parent31d85f6a6b0f10ac71985c013e6bdfa1048f88f8 (diff)
downloadqemu-5543b41167c1677a6a3d44c1ca727531c3315128.tar.gz
monitor: do_balloon(): Use 'M' argument type
This makes do_balloon() accept megabyte values from the user Monitor while accepting byte values for QMP. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> (cherry picked from commit 056001ab30b1e596b992e70f9cb2adacef9c0ad0)
-rw-r--r--monitor.c3
-rw-r--r--qemu-monitor.hx2
2 files changed, 2 insertions, 3 deletions
diff --git a/monitor.c b/monitor.c
index 53a4674d9d..c0dc48ea00 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 338e30e7d0..aac0f3e510 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,