qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/11] QAPI patches for 2019-06-12
@ 2019-06-12 16:52 Markus Armbruster
  2019-06-12 16:52 ` [Qemu-devel] [PULL 01/11] qdev: Delete unused LostTickPolicy "merge" Markus Armbruster
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Markus Armbruster @ 2019-06-12 16:52 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit a050901d4b40092dc356b59912c6df39e389c7b9:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.1-20190612' into staging (2019-06-12 14:43:47 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2019-06-12

for you to fetch changes up to 157dd363955b961ef378eb1f7817c31a7fa94d10:

  qapi: Simplify how QAPIDoc implements its state machine (2019-06-12 18:37:17 +0200)

----------------------------------------------------------------
QAPI patches for 2019-06-12

----------------------------------------------------------------
Kevin Wolf (6):
      qapi: Add feature flags to struct types
      tests/qapi-schema: Test for good feature lists in structs
      tests/qapi-schema: Error case tests for features in structs
      qapi: Disentangle QAPIDoc code
      qapi: Allow documentation for features
      file-posix: Add dynamic-auto-read-only QAPI feature

Markus Armbruster (2):
      qdev: Delete unused LostTickPolicy "merge"
      qapi: Simplify how QAPIDoc implements its state machine

Stefano Garzarella (3):
      qapi/block-core: update documentation of preallocation parameter
      block/file-posix: update .help of BLOCK_OPT_PREALLOC option
      block/gluster: update .help of BLOCK_OPT_PREALLOC option

 block/file-posix.c                             |   6 +-
 block/gluster.c                                |   9 +-
 docs/devel/qapi-code-gen.txt                   |  38 ++++
 qapi/block-core.json                           |  33 +++-
 qapi/introspect.json                           |   6 +-
 qapi/misc.json                                 |   6 +-
 scripts/qapi/common.py                         | 243 +++++++++++++++++++++----
 scripts/qapi/doc.py                            |  15 +-
 scripts/qapi/introspect.py                     |   6 +-
 scripts/qapi/types.py                          |   3 +-
 scripts/qapi/visit.py                          |   3 +-
 tests/Makefile.include                         |   6 +
 tests/qapi-schema/double-type.err              |   2 +-
 tests/qapi-schema/features-bad-type.err        |   1 +
 tests/qapi-schema/features-bad-type.exit       |   1 +
 tests/qapi-schema/features-bad-type.json       |   3 +
 tests/qapi-schema/features-bad-type.out        |   0
 tests/qapi-schema/features-duplicate-name.err  |   1 +
 tests/qapi-schema/features-duplicate-name.exit |   1 +
 tests/qapi-schema/features-duplicate-name.json |   3 +
 tests/qapi-schema/features-duplicate-name.out  |   0
 tests/qapi-schema/features-missing-name.err    |   1 +
 tests/qapi-schema/features-missing-name.exit   |   1 +
 tests/qapi-schema/features-missing-name.json   |   3 +
 tests/qapi-schema/features-missing-name.out    |   0
 tests/qapi-schema/features-name-bad-type.err   |   1 +
 tests/qapi-schema/features-name-bad-type.exit  |   1 +
 tests/qapi-schema/features-name-bad-type.json  |   3 +
 tests/qapi-schema/features-name-bad-type.out   |   0
 tests/qapi-schema/features-no-list.err         |   1 +
 tests/qapi-schema/features-no-list.exit        |   1 +
 tests/qapi-schema/features-no-list.json        |   3 +
 tests/qapi-schema/features-no-list.out         |   0
 tests/qapi-schema/features-unknown-key.err     |   2 +
 tests/qapi-schema/features-unknown-key.exit    |   1 +
 tests/qapi-schema/features-unknown-key.json    |   3 +
 tests/qapi-schema/features-unknown-key.out     |   0
 tests/qapi-schema/qapi-schema-test.json        |  39 ++++
 tests/qapi-schema/qapi-schema-test.out         |  43 +++++
 tests/qapi-schema/test-qapi.py                 |   7 +-
 tests/qapi-schema/unknown-expr-key.err         |   2 +-
 tests/test-qmp-cmds.c                          |   8 +
 42 files changed, 447 insertions(+), 59 deletions(-)
 create mode 100644 tests/qapi-schema/features-bad-type.err
 create mode 100644 tests/qapi-schema/features-bad-type.exit
 create mode 100644 tests/qapi-schema/features-bad-type.json
 create mode 100644 tests/qapi-schema/features-bad-type.out
 create mode 100644 tests/qapi-schema/features-duplicate-name.err
 create mode 100644 tests/qapi-schema/features-duplicate-name.exit
 create mode 100644 tests/qapi-schema/features-duplicate-name.json
 create mode 100644 tests/qapi-schema/features-duplicate-name.out
 create mode 100644 tests/qapi-schema/features-missing-name.err
 create mode 100644 tests/qapi-schema/features-missing-name.exit
 create mode 100644 tests/qapi-schema/features-missing-name.json
 create mode 100644 tests/qapi-schema/features-missing-name.out
 create mode 100644 tests/qapi-schema/features-name-bad-type.err
 create mode 100644 tests/qapi-schema/features-name-bad-type.exit
 create mode 100644 tests/qapi-schema/features-name-bad-type.json
 create mode 100644 tests/qapi-schema/features-name-bad-type.out
 create mode 100644 tests/qapi-schema/features-no-list.err
 create mode 100644 tests/qapi-schema/features-no-list.exit
 create mode 100644 tests/qapi-schema/features-no-list.json
 create mode 100644 tests/qapi-schema/features-no-list.out
 create mode 100644 tests/qapi-schema/features-unknown-key.err
 create mode 100644 tests/qapi-schema/features-unknown-key.exit
 create mode 100644 tests/qapi-schema/features-unknown-key.json
 create mode 100644 tests/qapi-schema/features-unknown-key.out

-- 
2.21.0



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

end of thread, other threads:[~2019-06-13 11:58 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12 16:52 [Qemu-devel] [PULL 00/11] QAPI patches for 2019-06-12 Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 01/11] qdev: Delete unused LostTickPolicy "merge" Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 02/11] qapi/block-core: update documentation of preallocation parameter Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 03/11] block/file-posix: update .help of BLOCK_OPT_PREALLOC option Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 04/11] block/gluster: " Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 05/11] qapi: Add feature flags to struct types Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 06/11] tests/qapi-schema: Test for good feature lists in structs Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 07/11] tests/qapi-schema: Error case tests for features " Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 08/11] qapi: Disentangle QAPIDoc code Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 09/11] qapi: Allow documentation for features Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 10/11] file-posix: Add dynamic-auto-read-only QAPI feature Markus Armbruster
2019-06-12 16:52 ` [Qemu-devel] [PULL 11/11] qapi: Simplify how QAPIDoc implements its state machine Markus Armbruster
2019-06-13 11:56 ` [Qemu-devel] [PULL 00/11] QAPI patches for 2019-06-12 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).