diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-03-29 12:38:50 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-04-09 14:35:25 -0300 |
commit | a15fef21c746e3aa0a94cf7b5bd9799886236666 (patch) | |
tree | fff54a082ea3fa920725805cd44a4de3823e54e6 /hmp.c | |
parent | 56f9107e439c32aa00d58d117a9b664551328f1e (diff) | |
download | qemu-a15fef21c746e3aa0a94cf7b5bd9799886236666.zip |
qapi: convert device_del
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -934,3 +934,12 @@ void hmp_migrate(Monitor *mon, const QDict *qdict) qemu_mod_timer(status->timer, qemu_get_clock_ms(rt_clock)); } } + +void hmp_device_del(Monitor *mon, const QDict *qdict) +{ + const char *id = qdict_get_str(qdict, "id"); + Error *err = NULL; + + qmp_device_del(id, &err); + hmp_handle_error(mon, &err); +} |