qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] QMP queue
@ 2014-02-13 15:30 Luiz Capitulino
  2014-02-13 15:30 ` [Qemu-devel] [PULL 01/22] hmp: migrate command (without -d) now blocks correctly Luiz Capitulino
                   ` (22 more replies)
  0 siblings, 23 replies; 28+ messages in thread
From: Luiz Capitulino @ 2014-02-13 15:30 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, anthony

The following changes since commit 9d74f6fef0801ca2ce5c9d38d59b85bf03c27669:

  Merge remote-tracking branch 'remotes/alon/pull-libcacard.glusterfs' into staging (2014-02-12 17:53:31 +0000)

are available in the git repository at:


  git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

for you to fetch changes up to ebdc5cbd04a47af74f8b853f8ec95ab6291c7b53:

  monitor: Add object_add class argument completion. (2014-02-13 08:49:35 -0500)

----------------------------------------------------------------
Ekaterina Tumanova (1):
      dump: Define the architecture for compressed dump format.

Hani Benhabiles (4):
      monitor: Add device_del id argument completion.
      monitor: Add device_add device argument completion.
      monitor: Add object_del id argument completion.
      monitor: Add object_add class argument completion.

Markus Armbruster (1):
      Use error_is_set() only when necessary

Martin Kletzander (1):
      qmp: expose list of supported character device backends

Soramichi AKIYAMA (1):
      hmp: migrate command (without -d) now blocks correctly

Stefan Hajnoczi (1):
      QMP: allow JSON dict arguments in qmp-shell

qiaonuohan (13):
      dump: const-qualify the buf of WriteCoreDumpFunction
      dump: add argument to write_elfxx_notes
      dump: add API to write header of flatten format
      dump: add API to write vmcore
      dump: add API to write elf notes to buffer
      dump: add support for lzo/snappy
      dump: add members to DumpState and init some of them
      dump: add API to write dump header
      dump: add API to write dump_bitmap
      dump: add APIs to operate DataCache
      dump: add API to write dump pages
      dump: make kdump-compressed format available for 'dump-guest-memory'
      dump: add 'query-dump-guest-memory-capability' command

 block.c                            |  16 +-
 block/blkdebug.c                   |   4 +-
 block/blkverify.c                  |   2 +-
 block/curl.c                       |   2 +-
 block/gluster.c                    |   2 +-
 block/iscsi.c                      |   2 +-
 block/nbd.c                        |   2 +-
 block/qapi.c                       |   4 +-
 block/qcow2.c                      |   6 +-
 block/raw-posix.c                  |  12 +-
 block/raw-win32.c                  |   4 +-
 block/raw_bsd.c                    |   2 +-
 block/rbd.c                        |   2 +-
 block/sheepdog.c                   |   2 +-
 block/snapshot.c                   |   2 +-
 block/vvfat.c                      |   2 +-
 blockdev.c                         |  42 +-
 blockjob.c                         |   4 +-
 configure                          |  54 +++
 dump.c                             | 960 ++++++++++++++++++++++++++++++++++++-
 hmp.c                              |  16 +-
 hw/pci/pci-hotplug-old.c           |   4 +-
 hw/usb/dev-network.c               |   2 +-
 include/qom/cpu.h                  |   3 +-
 include/sysemu/dump.h              | 138 ++++++
 monitor.c                          |  95 ++++
 net/net.c                          |  12 +-
 qapi-schema.json                   |  71 ++-
 qdev-monitor.c                     |   2 +-
 qemu-char.c                        |  25 +-
 qemu-img.c                         |   8 +-
 qga/commands-posix.c               |  18 +-
 qga/commands-win32.c               |   2 +-
 qmp-commands.hx                    |  68 ++-
 savevm.c                           |   4 +-
 scripts/qmp/qmp-shell              |   3 +
 target-i386/cpu.h                  |   2 +
 target-s390x/cpu.h                 |   1 +
 tests/test-qmp-input-strict.c      |  16 +-
 tests/test-qmp-input-visitor.c     |  20 +-
 tests/test-qmp-output-visitor.c    |  22 +-
 tests/test-string-input-visitor.c  |  20 +-
 tests/test-string-output-visitor.c |  14 +-
 tpm.c                              |   2 +-
 util/qemu-config.c                 |  16 +-
 util/qemu-option.c                 |  22 +-
 vl.c                               |   2 +-
 47 files changed, 1557 insertions(+), 177 deletions(-)

^ permalink raw reply	[flat|nested] 28+ messages in thread
* [Qemu-devel] [PULL 00/22]: QMP queue
@ 2011-12-06 17:54 Luiz Capitulino
  2011-12-12 16:34 ` Anthony Liguori
  0 siblings, 1 reply; 28+ messages in thread
From: Luiz Capitulino @ 2011-12-06 17:54 UTC (permalink / raw)
  To: aliguori; +Cc: qemu-devel

Anthony,

This pull request contains my round 3 QAPI conversion patches, the new QMP
visitor tests, some documentation and the qmp test tool.

The changes (since 217bfb445b54db618a30f3a39170bebd9fd9dbf2) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

Luiz Capitulino (21):
      docs: Add writing-qmp-commands.txt
      configure: Don't mix glib and libcheck tests
      Introduce test-qmp-output-visitor
      Introduce test-qmp-input-visitor
      Drop test-visitor
      qapi: Complete system_powerdown conversion
      console: Drop unused prototypes
      QError: Introduce QERR_IO_ERROR
      qapi: Convert memsave
      qapi: Convert pmemsave
      qapi: Convert cont
      qapi: Convert inject-nmi
      qapi: Convert set_link
      qapi: Convert block_passwd
      qapi: Convert balloon
      qapi: Convert block_resize
      qapi: Convert blockdev_snapshot_sync
      qapi: Convert human-monitor-command
      qapi: Convert migrate_cancel
      qapi: Convert migrate_set_downtime
      qapi: Convert migrate_set_speed

Mark Wu (1):
      qmp: add test tool for QMP

 Makefile                      |    9 +-
 QMP/qmp                       |  126 ++++++++
 balloon.c                     |   28 +--
 balloon.h                     |    3 -
 blockdev.c                    |   89 +++----
 blockdev.h                    |    4 -
 configure                     |    5 +-
 console.h                     |    2 -
 cpus.c                        |   90 ++++++
 docs/writing-qmp-commands.txt |  642 +++++++++++++++++++++++++++++++++++++++++
 hmp-commands.hx               |   36 +--
 hmp.c                         |  148 ++++++++++
 hmp.h                         |   12 +
 migration.c                   |   28 +--
 migration.h                   |    7 -
 monitor.c                     |  201 ++-----------
 monitor.h                     |    3 +
 net.c                         |   10 +-
 net.h                         |    1 -
 qapi-schema-test.json         |    6 +
 qapi-schema.json              |  267 +++++++++++++++++
 qerror.c                      |    4 +
 qerror.h                      |    3 +
 qmp-commands.hx               |   77 +----
 qmp.c                         |   37 +++
 test-qmp-input-visitor.c      |  270 +++++++++++++++++
 test-qmp-output-visitor.c     |  423 +++++++++++++++++++++++++++
 test-visitor.c                |  338 ----------------------
 28 files changed, 2153 insertions(+), 716 deletions(-)

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

end of thread, other threads:[~2014-02-20 13:08 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-13 15:30 [Qemu-devel] [PULL 00/22] QMP queue Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 01/22] hmp: migrate command (without -d) now blocks correctly Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 02/22] QMP: allow JSON dict arguments in qmp-shell Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 03/22] Use error_is_set() only when necessary Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 04/22] qmp: expose list of supported character device backends Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 05/22] dump: const-qualify the buf of WriteCoreDumpFunction Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 06/22] dump: add argument to write_elfxx_notes Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 07/22] dump: add API to write header of flatten format Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 08/22] dump: add API to write vmcore Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 09/22] dump: add API to write elf notes to buffer Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 10/22] dump: add support for lzo/snappy Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 11/22] dump: add members to DumpState and init some of them Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 12/22] dump: add API to write dump header Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 13/22] dump: add API to write dump_bitmap Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 14/22] dump: add APIs to operate DataCache Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 15/22] dump: add API to write dump pages Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 16/22] dump: make kdump-compressed format available for 'dump-guest-memory' Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 17/22] dump: Define the architecture for compressed dump format Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 18/22] dump: add 'query-dump-guest-memory-capability' command Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 19/22] monitor: Add device_del id argument completion Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 20/22] monitor: Add device_add device " Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 21/22] monitor: Add object_del id " Luiz Capitulino
2014-02-13 15:30 ` [Qemu-devel] [PULL 22/22] monitor: Add object_add class " Luiz Capitulino
2014-02-15 15:36 ` [Qemu-devel] [PULL 00/22] QMP queue Peter Maydell
2014-02-17 17:46   ` Luiz Capitulino
2014-02-20 13:07     ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2011-12-06 17:54 [Qemu-devel] [PULL 00/22]: " Luiz Capitulino
2011-12-12 16:34 ` 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).