qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/18] QAPI patches for 2016-09-19
@ 2016-09-19 16:41 Markus Armbruster
  2016-09-19 16:41 ` [Qemu-devel] [PULL 01/18] build-sys: define QEMU_VERSION_{MAJOR, MINOR, MICRO} Markus Armbruster
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Markus Armbruster @ 2016-09-19 16:41 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit e3571ae30cd26d19efd4554c25e32ef64d6a36b3:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20160916' into staging (2016-09-16 16:54:50 +0100)

are available in the git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2016-09-19

for you to fetch changes up to bd6092e407a5d682fbfddcbc510038b84bc1a1aa:

  Replace qmp-commands.hx by docs/qmp-commands.txt (2016-09-19 18:27:37 +0200)

----------------------------------------------------------------
QAPI patches for 2016-09-19

----------------------------------------------------------------
Marc-André Lureau (17):
      build-sys: define QEMU_VERSION_{MAJOR, MINOR, MICRO}
      qapi-schema: use generated marshaller for 'qmp_capabilities'
      qapi-schema: add 'device_add'
      monitor: simplify invalid_qmp_mode()
      monitor: register gen:false commands manually
      qmp: Hack to keep commands configuration-specific
      qapi: export the marshallers
      monitor: use qmp_find_command() (using generated qapi code)
      monitor: implement 'qmp_query_commands' without qmp_cmds
      monitor: remove mhandler.cmd_new
      qapi: remove the "middle" mode
      qapi: check invalid arguments on no-args commands
      tests: add a test to check invalid args
      monitor: use qmp_dispatch()
      build-sys: remove qmp-commands-old.h
      qmp-commands.hx: fix some styling
      Replace qmp-commands.hx by docs/qmp-commands.txt

Markus Armbruster (1):
      qapi: Support unregistering QMP commands

 .gitignore                               |    1 -
 MAINTAINERS                              |    1 -
 Makefile                                 |    8 +-
 Makefile.target                          |    7 +-
 docs/qapi-code-gen.txt                   |    6 +-
 qmp-commands.hx => docs/qmp-commands.txt | 1297 +-----------------------------
 docs/writing-qmp-commands.txt            |   46 +-
 hmp-commands-info.hx                     |  118 +--
 hmp-commands.hx                          |  208 ++---
 include/qapi/qmp/dispatch.h              |    1 +
 monitor.c                                |  426 +++-------
 qapi-schema.json                         |   61 ++
 qapi/qmp-registry.c                      |    8 +
 qmp.c                                    |   16 +-
 scripts/create_config                    |    6 +
 scripts/qapi-commands.py                 |   83 +-
 tests/test-qga.c                         |   21 +
 tests/test-qmp-commands.c                |   15 +
 trace-events                             |    1 -
 vl.c                                     |    1 +
 20 files changed, 460 insertions(+), 1871 deletions(-)
 rename qmp-commands.hx => docs/qmp-commands.txt (81%)

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

end of thread, other threads:[~2016-09-19 18:06 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-19 16:41 [Qemu-devel] [PULL 00/18] QAPI patches for 2016-09-19 Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 01/18] build-sys: define QEMU_VERSION_{MAJOR, MINOR, MICRO} Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 02/18] qapi-schema: use generated marshaller for 'qmp_capabilities' Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 03/18] qapi-schema: add 'device_add' Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 04/18] monitor: simplify invalid_qmp_mode() Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 05/18] monitor: register gen:false commands manually Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 06/18] qapi: Support unregistering QMP commands Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 07/18] qmp: Hack to keep commands configuration-specific Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 08/18] qapi: export the marshallers Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 09/18] monitor: use qmp_find_command() (using generated qapi code) Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 10/18] monitor: implement 'qmp_query_commands' without qmp_cmds Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 11/18] monitor: remove mhandler.cmd_new Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 12/18] qapi: remove the "middle" mode Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 13/18] qapi: check invalid arguments on no-args commands Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 14/18] tests: add a test to check invalid args Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 15/18] monitor: use qmp_dispatch() Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 16/18] build-sys: remove qmp-commands-old.h Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 17/18] qmp-commands.hx: fix some styling Markus Armbruster
2016-09-19 16:41 ` [Qemu-devel] [PULL 18/18] Replace qmp-commands.hx by docs/qmp-commands.txt Markus Armbruster
2016-09-19 18:05 ` [Qemu-devel] [PULL 00/18] QAPI patches for 2016-09-19 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).