qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/23]: Monitor queue
@ 2010-10-01 18:19 Luiz Capitulino
  2010-10-01 18:19 ` [Qemu-devel] [PATCH 01/23] Add support for JSON pretty printing Luiz Capitulino
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: Luiz Capitulino @ 2010-10-01 18:19 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-devel

Hi Anthony,

The following patches have been sent to the list and look good to me, I've
also tested them.

The changes (since 2c50e26efdb7e405ecacf89e6a57a60179226dd8) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git for-anthony

Daniel P. Berrange (2):
      Add support for JSON pretty printing
      Add option to turn on JSON pretty printing in monitor

Eduardo Habkost (1):
      disable guest-provided stats on "info balloon" command

Luiz Capitulino (20):
      Monitor: Introduce search_dispatch_table()
      QMP: handle_qmp_command(): Move 'cmd' sanity check
      QMP: Don't use do_info()
      Monitor: Drop QMP bits from do_info()
      Monitor: Drop is_async_return()
      Monitor: Convert do_info() back to HMP
      Monitor: Introduce the qmp-commands.hx file
      QMP: Introduce qmp_find_cmd()
      QMP: Introduce command dispatch table
      QMP: Introduce query commands dispatch table
      QMP: Simplify do_info_commands()
      QMP: Small cleanup in handle_qmp_command()
      Monitor: Drop QMP info from the qemu-monitor.hx file
      Monitor: Drop monitor_cmd_user_only()
      Monitor: Rename monitor_handler_ported()
      Monitor: Rename monitor_handler_is_async()
      Monitor: Directly call QObject handlers
      QMP: Introduce qmp_call_cmd()
      Monitor: Rename the qemu-monitor.hx file
      QMP/README: Update QMP homepage address

 Makefile            |    4 +-
 Makefile.target     |    9 +-
 QMP/README          |    4 +-
 hmp-commands.hx     | 1216 ++++++++++++++++++++++++
 hw/virtio-balloon.c |    8 +-
 monitor.c           |  366 +++++---
 monitor.h           |    2 +-
 qemu-config.c       |    3 +
 qemu-monitor.hx     | 2575 ---------------------------------------------------
 qjson.c             |   55 +-
 qjson.h             |    1 +
 qmp-commands.hx     | 1541 ++++++++++++++++++++++++++++++
 vl.c                |    3 +
 13 files changed, 3061 insertions(+), 2726 deletions(-)

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2010-10-05 19:11 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 18:19 [Qemu-devel] [PULL 00/23]: Monitor queue Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 01/23] Add support for JSON pretty printing Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 02/23] Add option to turn on JSON pretty printing in monitor Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 03/23] disable guest-provided stats on "info balloon" command Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 04/23] Monitor: Introduce search_dispatch_table() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 05/23] QMP: handle_qmp_command(): Move 'cmd' sanity check Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 06/23] QMP: Don't use do_info() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 07/23] Monitor: Drop QMP bits from do_info() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 08/23] Monitor: Drop is_async_return() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 09/23] Monitor: Convert do_info() back to HMP Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 10/23] Monitor: Introduce the qmp-commands.hx file Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 11/23] QMP: Introduce qmp_find_cmd() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 12/23] QMP: Introduce command dispatch table Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 13/23] QMP: Introduce query commands " Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 14/23] QMP: Simplify do_info_commands() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 15/23] QMP: Small cleanup in handle_qmp_command() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 16/23] Monitor: Drop QMP info from the qemu-monitor.hx file Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 17/23] Monitor: Drop monitor_cmd_user_only() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 18/23] Monitor: Rename monitor_handler_ported() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 19/23] Monitor: Rename monitor_handler_is_async() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 20/23] Monitor: Directly call QObject handlers Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 21/23] QMP: Introduce qmp_call_cmd() Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 22/23] Monitor: Rename the qemu-monitor.hx file Luiz Capitulino
2010-10-01 18:19 ` [Qemu-devel] [PATCH 23/23] QMP/README: Update QMP homepage address Luiz Capitulino
2010-10-05 19:11 ` [Qemu-devel] [PULL 00/23]: Monitor queue Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).