All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/32] QMP queue
@ 2014-03-03 17:11 Luiz Capitulino
  2014-03-03 17:11 ` [Qemu-devel] [PULL 01/32] QMP: Allow dot separated dict path arguments in qmp-shell Luiz Capitulino
                   ` (32 more replies)
  0 siblings, 33 replies; 35+ messages in thread
From: Luiz Capitulino @ 2014-03-03 17:11 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, anthony

The following changes since commit d844a7b6569fb2b5252773444b18841426e5b906:

  modules: Fix building with --enable-modules (2014-02-28 12:30:13 +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 b774539743c52ef605c6e2cbac19376c2757cb86:

  qapi: Add missing null check to opts_start_struct() (2014-03-03 11:17:45 -0500)

----------------------------------------------------------------
Fam Zheng (2):
      QMP: Allow dot separated dict path arguments in qmp-shell
      qmp: Check for returned data from __json_read in get_events

Hani Benhabiles (2):
      qerror: Improve QERR_DEVICE_NOT_ACTIVE message
      monitor: Remove left-over code in do_info_profile.

Luiz Capitulino (1):
      MAINTAINERS: update status for HMP, QAPI and QMP trees

Markus Armbruster (13):
      tests/qapi-schema: Actually check successful QMP command response
      tests/qapi-schema: Cover optional command arguments
      tests/qapi-schema: Cover simple argument types
      tests/qapi-schema: Cover anonymous union types
      tests/qapi-schema: Cover complex types with base
      tests/qapi-schema: Cover union types with base
      tests/qapi-schema: Cover flat union types
      qapi: Fix licensing of scripts
      qapi: Drop nonsensical header guard in generated qapi-visit.c
      qapi: Drop unused code in qapi-commands.py
      qapi: Clean up null checking in generated visitors
      qapi: Clean up superfluous null check in qapi_dealloc_type_str()
      qapi: Add missing null check to opts_start_struct()

qiaonuohan (14):
      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'
      Define the architecture for compressed dump format
      dump: add 'query-dump-guest-memory-capability' command

 MAINTAINERS                             |   6 +-
 configure                               |  54 ++
 dump.c                                  | 960 +++++++++++++++++++++++++++++++-
 hmp.c                                   |   5 +-
 include/qapi/qmp/qerror.h               |   2 +-
 include/qom/cpu.h                       |   3 +-
 include/sysemu/dump.h                   | 138 +++++
 monitor.c                               |   4 -
 qapi-schema.json                        |  49 +-
 qapi/opts-visitor.c                     |   4 +-
 qapi/qapi-dealloc-visitor.c             |   4 +-
 qmp-commands.hx                         |  27 +-
 scripts/qapi-commands.py                |  24 +-
 scripts/qapi-types.py                   |   4 +-
 scripts/qapi-visit.py                   |  20 +-
 scripts/qapi.py                         |   4 +-
 scripts/qmp/qmp-shell                   |  20 +-
 scripts/qmp/qmp.py                      |   7 +-
 target-i386/cpu.h                       |   2 +
 target-s390x/cpu.h                      |   1 +
 tests/qapi-schema/qapi-schema-test.json |  24 +-
 tests/qapi-schema/qapi-schema-test.out  |  19 +-
 tests/test-qmp-commands.c               |  78 ++-
 tests/test-qmp-input-strict.c           |  69 ++-
 tests/test-qmp-input-visitor.c          |  45 +-
 tests/test-qmp-output-visitor.c         |  67 ++-
 tests/test-visitor-serialization.c      |  14 +-
 27 files changed, 1546 insertions(+), 108 deletions(-)

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

end of thread, other threads:[~2014-03-04 18:14 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-03 17:11 [Qemu-devel] [PULL 00/32] QMP queue Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 01/32] QMP: Allow dot separated dict path arguments in qmp-shell Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 02/32] MAINTAINERS: update status for HMP, QAPI and QMP trees Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 03/32] dump: const-qualify the buf of WriteCoreDumpFunction Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 04/32] dump: add argument to write_elfxx_notes Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 05/32] dump: add API to write header of flatten format Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 06/32] dump: add API to write vmcore Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 07/32] dump: add API to write elf notes to buffer Luiz Capitulino
2014-03-03 17:11 ` [Qemu-devel] [PULL 08/32] dump: add support for lzo/snappy Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 09/32] dump: add members to DumpState and init some of them Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 10/32] dump: add API to write dump header Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 11/32] dump: add API to write dump_bitmap Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 12/32] dump: add APIs to operate DataCache Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 13/32] dump: add API to write dump pages Luiz Capitulino
2014-03-03 19:05   ` Eric Blake
2014-03-03 17:12 ` [Qemu-devel] [PULL 14/32] dump: make kdump-compressed format available for 'dump-guest-memory' Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 15/32] Define the architecture for compressed dump format Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 16/32] dump: add 'query-dump-guest-memory-capability' command Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 17/32] qmp: Check for returned data from __json_read in get_events Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 18/32] qerror: Improve QERR_DEVICE_NOT_ACTIVE message Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 19/32] monitor: Remove left-over code in do_info_profile Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 20/32] tests/qapi-schema: Actually check successful QMP command response Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 21/32] tests/qapi-schema: Cover optional command arguments Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 22/32] tests/qapi-schema: Cover simple argument types Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 23/32] tests/qapi-schema: Cover anonymous union types Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 24/32] tests/qapi-schema: Cover complex types with base Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 25/32] tests/qapi-schema: Cover union " Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 26/32] tests/qapi-schema: Cover flat union types Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 27/32] qapi: Fix licensing of scripts Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 28/32] qapi: Drop nonsensical header guard in generated qapi-visit.c Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 29/32] qapi: Drop unused code in qapi-commands.py Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 30/32] qapi: Clean up null checking in generated visitors Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 31/32] qapi: Clean up superfluous null check in qapi_dealloc_type_str() Luiz Capitulino
2014-03-03 17:12 ` [Qemu-devel] [PULL 32/32] qapi: Add missing null check to opts_start_struct() Luiz Capitulino
2014-03-04 18:13 ` [Qemu-devel] [PULL 00/32] QMP queue Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.