From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:42871) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ra8qi-0006nm-Eo for qemu-devel@nongnu.org; Mon, 12 Dec 2011 11:35:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ra8qY-0008Dh-JX for qemu-devel@nongnu.org; Mon, 12 Dec 2011 11:35:32 -0500 Received: from e38.co.us.ibm.com ([32.97.110.159]:51112) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ra8qY-00089r-E9 for qemu-devel@nongnu.org; Mon, 12 Dec 2011 11:35:22 -0500 Received: from /spool/local by e38.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 12 Dec 2011 09:35:06 -0700 Received: from d03av02.boulder.ibm.com (d03av02.boulder.ibm.com [9.17.195.168]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id pBCGYQ88114684 for ; Mon, 12 Dec 2011 09:34:28 -0700 Received: from d03av02.boulder.ibm.com (loopback [127.0.0.1]) by d03av02.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id pBCGYQ5D020447 for ; Mon, 12 Dec 2011 09:34:26 -0700 Message-ID: <4EE62D11.10602@us.ibm.com> Date: Mon, 12 Dec 2011 10:34:25 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1323194072-20046-1-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1323194072-20046-1-git-send-email-lcapitulino@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 00/22]: QMP queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: qemu-devel@nongnu.org On 12/06/2011 11:54 AM, Luiz Capitulino wrote: > 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 Pulled. Thanks. Regards, Anthony Liguori > > 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(-) > > >