diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-11-25 14:38:09 -0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-12-06 11:40:01 -0200 |
commit | d72f326431e280a619a0fd55e27d3737747f8178 (patch) | |
tree | 14ae3162f13447b2a702974d9df5f830a538ff67 /qmp-commands.hx | |
parent | a4dea8a9f4e0a4a863e5f3b366350fd697552d8a (diff) |
qapi: Convert balloon
Note that the command being dropped uses the deprecated MONITOR_CMD_ASYNC
API, but the new command is a regular synchronous command. There shouldn't
be visible differences though, as MONITOR_CMD_ASYNC is internal only.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index bbf9bfcdd8..7c377f015b 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -703,11 +703,7 @@ EQMP { .name = "balloon", .args_type = "value:M", - .params = "target", - .help = "request VM to change its memory allocation (in MB)", - .user_print = monitor_user_noop, - .mhandler.cmd_async = do_balloon, - .flags = MONITOR_CMD_ASYNC, + .mhandler.cmd_new = qmp_marshal_input_balloon, }, SQMP |