]> git.proxmox.com Git - mirror_qemu.git/commit - hmp.c
monitor: Use traditional command interface for HMP device_add
authorMarkus Armbruster <armbru@redhat.com>
Thu, 5 Mar 2015 16:24:48 +0000 (17:24 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 2 Jun 2015 07:59:13 +0000 (09:59 +0200)
commit318660f84a0a26451750aee68ab7dcf88731637d
tree2ff29b0f2b111e5d077febf43a13d82d7f59040e
parent072ebe6b0351060b33287454fdef625fe79c858f
monitor: Use traditional command interface for HMP device_add

All QMP commands use the "new" handler interface (mhandler.cmd_new).
Most HMP commands still use the traditional interface (mhandler.cmd),
but a few use the "new" one.  Complicates handle_user_command() for no
gain, so I'm converting these to the traditional interface.

For device_add, that's easy: just wrap the obvious hmp_device_add()
around do_device_add().

monitor_user_noop() is now unused, drop it.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
hmp-commands.hx
hmp.c
hmp.h
monitor.c