]> git.proxmox.com Git - qemu.git/commit
QMP: Small cleanup in handle_qmp_command()
authorLuiz Capitulino <lcapitulino@redhat.com>
Mon, 13 Sep 2010 17:44:27 +0000 (14:44 -0300)
committerLuiz Capitulino <lcapitulino@redhat.com>
Fri, 1 Oct 2010 13:20:06 +0000 (10:20 -0300)
commitd1249eaa4b5af2a66b56ceb59b484c6337c3e3c7
tree41944b72d6c6ffb80701766e2d6838b8e2bb8351
parent2e061a7c86d77c599676d89c3461f8efe9c275b1
QMP: Small cleanup in handle_qmp_command()

QMP has its own dispatch tables, we can now drop the following
checks:

    o 'info' command: this command doesn't exist in QMP's
       dispatch table, the right thing will happen when it's
       issued by a client (ie. command not found error)

    o monitor_handler_ported(): all QMP handlers are 'ported', no
      need to check for that

    o monitor_cmd_user_only(): no HMP handler will exist in QMP's
      dispatch tables, that's why we have split them after all :-)

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
monitor.c