From: Anthony Liguori <aliguori@us.ibm.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 00/22]: QMP queue
Date: Mon, 12 Dec 2011 10:34:25 -0600 [thread overview]
Message-ID: <4EE62D11.10602@us.ibm.com> (raw)
In-Reply-To: <1323194072-20046-1-git-send-email-lcapitulino@redhat.com>
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(-)
>
>
>
next prev parent reply other threads:[~2011-12-12 16:35 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-06 17:54 [Qemu-devel] [PULL 00/22]: QMP queue Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 01/22] docs: Add writing-qmp-commands.txt Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 02/22] qmp: add test tool for QMP Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 03/22] configure: Don't mix glib and libcheck tests Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 04/22] Introduce test-qmp-output-visitor Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 05/22] Introduce test-qmp-input-visitor Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 06/22] Drop test-visitor Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 07/22] qapi: Complete system_powerdown conversion Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 08/22] console: Drop unused prototypes Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 09/22] QError: Introduce QERR_IO_ERROR Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 10/22] qapi: Convert memsave Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 11/22] qapi: Convert pmemsave Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 12/22] qapi: Convert cont Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 13/22] qapi: Convert inject-nmi Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 14/22] qapi: Convert set_link Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 15/22] qapi: Convert block_passwd Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 16/22] qapi: Convert balloon Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 17/22] qapi: Convert block_resize Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 18/22] qapi: Convert blockdev_snapshot_sync Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 19/22] qapi: Convert human-monitor-command Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 20/22] qapi: Convert migrate_cancel Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 21/22] qapi: Convert migrate_set_downtime Luiz Capitulino
2011-12-06 17:54 ` [Qemu-devel] [PATCH 22/22] qapi: Convert migrate_set_speed Luiz Capitulino
2011-12-12 16:34 ` Anthony Liguori [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-02-13 15:30 [Qemu-devel] [PULL 00/22] QMP queue Luiz Capitulino
2014-02-15 15:36 ` Peter Maydell
2014-02-17 17:46 ` Luiz Capitulino
2014-02-20 13:07 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EE62D11.10602@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.