qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: aliguori@us.ibm.com
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 00/23][PULL]: QMP/Monitor queue
Date: Thu,  1 Jul 2010 16:21:28 -0300	[thread overview]
Message-ID: <1278012111-26227-1-git-send-email-lcapitulino@redhat.com> (raw)

Hi Anthony,

The following QMP/Monitor patches have been sent to the list and look good
to me. I also did some basic testing on them.

Most of these changes are bug fixes, the only exception is my new argument
checker series, which is a complete rewrite (that also fix bugs...).

The changes (since 449041d4db1f82f281fe097e832f07cd9ee1e864) are available
in the following repository:

    git://repo.or.cz/qemu/qmp-unstable.git for-anthony

Jan Kiszka (6):
      monitor: Fix leakage during completion processing
      monitor: Fix command completion vs. boolean switches
      monitor: Establish cmd flags and convert the async tag
      QMP: Teach basic capability negotiation to python example
      QMP: Fix python helper /wrt long return strings
      monitor: Allow to exclude commands from QMP

Luiz Capitulino (16):
      QMP: Fix error reporting in the async API
      QError: Enhance QERR_DEVICE_NOT_ACTIVE's user desc
      QDict: Rename 'err_value'
      QDict: Small terminology change
      QDict: Introduce functions to retrieve QDictEntry values
      QDict: Introduce new iteration API
      check-qdict: Introduce test for the new iteration API
      QDict: Introduce qdict_get_try_bool()
      Monitor: handle optional '-' arg as a bool
      QMP: New argument checker (first part)
      QMP: New argument checker (second part)
      QMP: Drop old client argument checker
      QError: Introduce QERR_QMP_EXTRA_MEMBER
      QMP: Introduce qmp_check_input_obj()
      QMP: Drop old input object checking
      QMP: handle_qmp_command(): Small cleanup

Yoshiaki Tamura (1):
      net: delete QemuOpts when net_client_init() fails.

 QMP/qmp-shell   |    1 +
 QMP/qmp.py      |    6 +-
 QMP/vm-info     |    1 +
 blockdev.c      |    2 +-
 check-qdict.c   |   33 ++++-
 migration.c     |   16 +-
 monitor.c       |  435 ++++++++++++++++++++++++++++++++-----------------------
 monitor.h       |    4 +
 net.c           |    4 +
 qdict.c         |  106 ++++++++++++--
 qdict.h         |   11 +-
 qemu-monitor.hx |    2 +-
 qerror.c        |    6 +-
 qerror.h        |    3 +
 14 files changed, 418 insertions(+), 212 deletions(-)

             reply	other threads:[~2010-07-01 19:22 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-01 19:21 Luiz Capitulino [this message]
2010-07-01 19:21 ` [Qemu-devel] [PATCH 01/23] monitor: Fix leakage during completion processing Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 02/23] monitor: Fix command completion vs. boolean switches Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 03/23] monitor: Establish cmd flags and convert the async tag Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 04/23] QMP: Teach basic capability negotiation to python example Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 05/23] QMP: Fix python helper /wrt long return strings Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 06/23] net: delete QemuOpts when net_client_init() fails Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 07/23] QMP: Fix error reporting in the async API Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 08/23] QError: Enhance QERR_DEVICE_NOT_ACTIVE's user desc Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 09/23] QDict: Rename 'err_value' Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 10/23] QDict: Small terminology change Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 11/23] QDict: Introduce functions to retrieve QDictEntry values Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 12/23] QDict: Introduce new iteration API Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 13/23] check-qdict: Introduce test for the " Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 14/23] QDict: Introduce qdict_get_try_bool() Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 15/23] Monitor: handle optional '-' arg as a bool Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 16/23] QMP: New argument checker (first part) Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 17/23] QMP: New argument checker (second part) Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 18/23] QMP: Drop old client argument checker Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 19/23] QError: Introduce QERR_QMP_EXTRA_MEMBER Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 20/23] QMP: Introduce qmp_check_input_obj() Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 21/23] QMP: Drop old input object checking Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 22/23] QMP: handle_qmp_command(): Small cleanup Luiz Capitulino
2010-07-01 19:21 ` [Qemu-devel] [PATCH 23/23] monitor: Allow to exclude commands from QMP Luiz Capitulino
2010-07-06 15:44 ` [Qemu-devel] [PATCH 00/23][PULL]: QMP/Monitor queue Anthony Liguori

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=1278012111-26227-1-git-send-email-lcapitulino@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=aliguori@us.ibm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).