From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43738) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKWYJ-0001oR-6R for qemu-devel@nongnu.org; Mon, 03 Mar 2014 12:21:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKWYF-0003FS-2u for qemu-devel@nongnu.org; Mon, 03 Mar 2014 12:21:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:14269) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKWYE-0003FL-Qr for qemu-devel@nongnu.org; Mon, 03 Mar 2014 12:21:15 -0500 From: Luiz Capitulino Date: Mon, 3 Mar 2014 12:11:51 -0500 Message-Id: <1393866743-17385-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 00/32] QMP queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: qemu-devel@nongnu.org, anthony@codemonkey.ws 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(-)