From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45836) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDbdL-0007t0-Ct for qemu-devel@nongnu.org; Fri, 30 Mar 2012 09:12:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SDbdF-0005em-3D for qemu-devel@nongnu.org; Fri, 30 Mar 2012 09:12:50 -0400 Received: from e38.co.us.ibm.com ([32.97.110.159]:56606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDbdE-0005eN-TH for qemu-devel@nongnu.org; Fri, 30 Mar 2012 09:12:45 -0400 Received: from /spool/local by e38.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 30 Mar 2012 07:12:40 -0600 Received: from d01relay03.pok.ibm.com (d01relay03.pok.ibm.com [9.56.227.235]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 5ADDEC9005C for ; Fri, 30 Mar 2012 09:12:35 -0400 (EDT) Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d01relay03.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q2UDCZbM299150 for ; Fri, 30 Mar 2012 09:12:35 -0400 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 q2UDCcC2013495 for ; Fri, 30 Mar 2012 07:12:38 -0600 Message-ID: <4F75B12C.3040100@us.ibm.com> Date: Fri, 30 Mar 2012 08:12:12 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1332850851-4059-1-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1332850851-4059-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/13]: QMP queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: qemu-devel@nongnu.org On 03/27/2012 07:20 AM, Luiz Capitulino wrote: > All of them are QAPI fixes. > > The changes (since 8a22565b7c2d1920b02b94e7a8021c65895a3a22) are available > in the following repository: > > git://repo.or.cz/qemu/qmp-unstable.git queue/qmp Pulled. Thanks. Regards, Anthony Liguori > > Laszlo Ersek (1): > qapi: fix double free in qmp_output_visitor_cleanup() > > Paolo Bonzini (12): > qapi: add struct-errors test case to test-qmp-output-visitor > qapi: add a test case for type errors > qapi: fail hard on stack imbalance > qapi: fix memory leak on error > qapi: shortcut visits on errors > qapi: allow freeing partially-allocated objects > qapi: untangle next_list > qapi: place outermost object on qiv stack > qapi: add strict mode to input visitor > qmp: add and use q type specifier > qmp: parse commands in strict mode > qmp: document strict parsing > > QMP/qmp-spec.txt | 20 +++- > docs/qapi-code-gen.txt | 4 +- > monitor.c | 3 + > qapi-schema-test.json | 2 +- > qapi/qmp-input-visitor.c | 120 +++++++++++++++-------- > qapi/qmp-input-visitor.h | 2 + > qapi/qmp-output-visitor.c | 8 +- > qmp-commands.hx | 4 +- > scripts/qapi-commands.py | 2 +- > scripts/qapi-visit.py | 20 +++- > test-qmp-input-strict.c | 234 +++++++++++++++++++++++++++++++++++++++++++++ > test-qmp-input-visitor.c | 19 ++++ > test-qmp-output-visitor.c | 20 ++++ > tests/Makefile | 5 +- > 14 files changed, 407 insertions(+), 56 deletions(-) > > >