qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/20] QMP queue
@ 2014-05-16 15:30 Luiz Capitulino
  2014-05-16 15:30 ` [Qemu-devel] [PULL 01/20] qapi: Update qapi-code-gen.txt example to match current code Luiz Capitulino
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: Luiz Capitulino @ 2014-05-16 15:30 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, anthony

The following changes since commit 16a9189921bdb9e351f2f9baec16b376f8d71cdf:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-roms-2' into staging (2014-05-15 18:32:16 +0100)

are available in the git repository at:


  git://repo.or.cz/qemu/qmp-unstable.git queue/qmp

for you to fetch changes up to 24fd848950b44de7e2d71fb69ba52b90d6acb220:

  qapi: skip redundant includes (2014-05-16 10:35:59 -0400)

----------------------------------------------------------------
Benoît Canet (1):
      qapi: skip redundant includes

Hani Benhabiles (6):
      monitor: Convert sendkey to use command_completion.
      monitor: Add chardev-remove command completion.
      monitor: Add chardev-add backend argument completion.
      monitor: Add set_link arguments completion.
      monitor: Add netdev_add type argument completion.
      monitor: Add netdev_del id argument completion.

Markus Armbruster (13):
      qapi: Update qapi-code-gen.txt example to match current code
      qapi: Normalize marshalling's visitor initialization and cleanup
      qapi: Remove unused Visitor callbacks start_handle(), end_handle()
      qapi: Replace start_optional()/end_optional() by optional()
      qapi-visit.py: Clean up confusing push_indent() / pop_indent() use
      qapi: Clean up shadowing of parameters and locals in inner scopes
      qapi-visit.py: Clean up a sloppy use of field prefix
      qapi: Un-inline visit of implicit struct
      hmp: Call visit_end_struct() after visit_start_struct() succeeds
      hw: Don't call visit_end_struct() after visit_start_struct() fails
      tests: Don't call visit_end_struct() after visit_start_struct() fails
      qapi: Replace uncommon use of the error API by the common one
      qapi: Show qapi-commands.py invocation in qapi-code-gen.txt

 docs/qapi-code-gen.txt                        | 194 +++++++++++--------
 hmp-commands.hx                               |   8 +-
 hmp.c                                         |  16 +-
 hmp.h                                         |   6 +
 hw/timer/mc146818rtc.c                        |  41 +++-
 hw/virtio/virtio-balloon.c                    |  33 +++-
 include/qapi/visitor-impl.h                   |   8 +-
 include/qapi/visitor.h                        |   5 +-
 monitor.c                                     | 153 ++++++++++++++-
 net/net.c                                     |   2 +-
 qapi/opts-visitor.c                           |   5 +-
 qapi/qapi-visit-core.c                        | 259 +++++++++++---------------
 qapi/qmp-input-visitor.c                      |   6 +-
 qapi/string-input-visitor.c                   |   6 +-
 scripts/qapi-commands.py                      |  89 +++++----
 scripts/qapi-visit.py                         | 232 +++++++++++++----------
 scripts/qapi.py                               |  14 +-
 tests/Makefile                                |   3 +-
 tests/qapi-schema/include-repetition-sub.json |   2 +
 tests/qapi-schema/include-repetition.err      |   0
 tests/qapi-schema/include-repetition.exit     |   1 +
 tests/qapi-schema/include-repetition.json     |   3 +
 tests/qapi-schema/include-repetition.out      |   3 +
 tests/test-qmp-input-strict.c                 |  28 ++-
 tests/test-qmp-input-visitor.c                |  26 ++-
 tests/test-qmp-output-visitor.c               |  28 ++-
 tests/test-visitor-serialization.c            |  26 ++-
 27 files changed, 752 insertions(+), 445 deletions(-)
 create mode 100644 tests/qapi-schema/include-repetition-sub.json
 create mode 100644 tests/qapi-schema/include-repetition.err
 create mode 100644 tests/qapi-schema/include-repetition.exit
 create mode 100644 tests/qapi-schema/include-repetition.json
 create mode 100644 tests/qapi-schema/include-repetition.out

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2014-05-19 15:09 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-16 15:30 [Qemu-devel] [PULL 00/20] QMP queue Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 01/20] qapi: Update qapi-code-gen.txt example to match current code Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 02/20] qapi: Normalize marshalling's visitor initialization and cleanup Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 03/20] qapi: Remove unused Visitor callbacks start_handle(), end_handle() Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 04/20] qapi: Replace start_optional()/end_optional() by optional() Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 05/20] qapi-visit.py: Clean up confusing push_indent() / pop_indent() use Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 06/20] qapi: Clean up shadowing of parameters and locals in inner scopes Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 07/20] qapi-visit.py: Clean up a sloppy use of field prefix Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 08/20] qapi: Un-inline visit of implicit struct Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 09/20] hmp: Call visit_end_struct() after visit_start_struct() succeeds Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 10/20] hw: Don't call visit_end_struct() after visit_start_struct() fails Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 11/20] tests: " Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 12/20] qapi: Replace uncommon use of the error API by the common one Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 13/20] qapi: Show qapi-commands.py invocation in qapi-code-gen.txt Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 14/20] monitor: Convert sendkey to use command_completion Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 15/20] monitor: Add chardev-remove command completion Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 16/20] monitor: Add chardev-add backend argument completion Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 17/20] monitor: Add set_link arguments completion Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 18/20] monitor: Add netdev_add type argument completion Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 19/20] monitor: Add netdev_del id " Luiz Capitulino
2014-05-16 15:30 ` [Qemu-devel] [PULL 20/20] qapi: skip redundant includes Luiz Capitulino
2014-05-19 15:09 ` [Qemu-devel] [PULL 00/20] QMP queue Peter Maydell

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).