From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:45237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKv9u-0004Xr-Eh for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:56:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKv9t-0006Mk-8F for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:56:26 -0400 Received: from e33.co.us.ibm.com ([32.97.110.151]:49848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKv9s-0006Mc-Tj for qemu-devel@nongnu.org; Mon, 31 Oct 2011 12:56:25 -0400 Received: from /spool/local by e33.co.us.ibm.com with XMail ESMTP for from ; Mon, 31 Oct 2011 10:53:54 -0600 Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d03relay03.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9VGrdA9095052 for ; Mon, 31 Oct 2011 10:53:40 -0600 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9VGqUPl015853 for ; Mon, 31 Oct 2011 10:52:30 -0600 Message-ID: <4EAED24D.6090601@us.ibm.com> Date: Mon, 31 Oct 2011 11:52:29 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1319742136-8691-1-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1319742136-8691-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/19]: QMP queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: mdroth@linux.vnet.ibm.com, qemu-devel@nongnu.org On 10/27/2011 02:01 PM, Luiz Capitulino wrote: > Anthony, > > This pull request contains only my "QAPI conversions round 2" series (which > got no review comments... last chance!). > > The changes (since 9f60639b848944200c3d33a89233d808de0b5a43) are available > in the following repository: > > git://repo.or.cz/qemu/qmp-unstable.git queue/qmp Pulled. Thanks. Regards, Anthony Liguori > > Luiz Capitulino (19): > qapi-commands.py: Don't call the output marshal on error > qapi: Convert query-mice > qapi: Convert query-migrate > Monitor: Make mon_set_cpu() public > Monitor: Introduce monitor_get_cpu_index() > qapi: Convert the cpu command > qapi: Convert query-cpus > block: iostatus: Drop BDRV_IOS_INVAL > block: Rename the BlockIOStatus enum values > qapi: Convert query-block > qapi: Convert query-blockstats > qerror: Add a user string for QERR_FEATURE_DISABLED > qapi: Convert query-vnc > qapi: Convert query-spice > qapi: Convert query-balloon > qapi: Convert query-pci > QMP: Drop the query commands dispatch table > Monitor: do_info(): Drop QMP command handling code > Drop qemu-objects.h from modules that don't require it > > balloon.c | 72 +----- > balloon.h | 6 +- > block.c | 234 ++++++------------ > block.h | 5 - > block_int.h | 4 +- > console.h | 9 - > cpus.c | 45 ++++ > error.c | 3 +- > hmp-commands.hx | 3 +- > hmp.c | 407 ++++++++++++++++++++++++++++++ > hmp.h | 10 + > hw/pci-stub.c | 15 +- > hw/pci.c | 322 +++++++++--------------- > hw/pci.h | 4 - > hw/virtio-balloon.c | 78 +----- > input.c | 64 ++---- > migration.c | 82 ++----- > monitor.c | 313 ++---------------------- > monitor.h | 2 + > qapi-schema.json | 616 ++++++++++++++++++++++++++++++++++++++++++++++ > qerror.c | 4 + > qmp-commands.hx | 60 +++++- > qmp.c | 27 ++ > scripts/qapi-commands.py | 4 +- > ui/spice-core.c | 139 +++++------ > ui/vnc.c | 135 +++++++---- > vl.c | 2 +- > 27 files changed, 1611 insertions(+), 1054 deletions(-) > > >