diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-12-20 23:21:09 +0100 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-01-06 13:45:47 -0500 |
commit | ab2d0531b2e41bc5fd8f8e59405f135986599476 (patch) | |
tree | f40c89a272948494054e57f8096253a5f50a0bd4 /qmp-commands.hx | |
parent | b0ed5e9feaf0e2881330a48c692f62e1ac6d9052 (diff) | |
download | qemu-ab2d0531b2e41bc5fd8f8e59405f135986599476.tar.gz qemu-ab2d0531b2e41bc5fd8f8e59405f135986599476.tar.bz2 qemu-ab2d0531b2e41bc5fd8f8e59405f135986599476.zip |
monitor: add object-del (QMP) and object_del (HMP) command
These two commands invoke the "unparent" method of Object.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Tested-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r-- | qmp-commands.hx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx index fba15cdc3b..71422cd99c 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -879,6 +879,31 @@ Example: EQMP { + .name = "object-del", + .args_type = "id:s", + .mhandler.cmd_new = qmp_marshal_input_object_del, + }, + +SQMP +object-del +---------- + +Remove QOM object. + +Arguments: + +- "id": the object's ID (json-string) + +Example: + +-> { "execute": "object-del", "arguments": { "id": "rng1" } } +<- { "return": {} } + + +EQMP + + + { .name = "block_resize", .args_type = "device:B,size:o", .mhandler.cmd_new = qmp_marshal_input_block_resize, |