From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/11] QAPI patches for 2019-06-12
Date: Wed, 12 Jun 2019 18:52:18 +0200 [thread overview]
Message-ID: <20190612165229.26976-1-armbru@redhat.com> (raw)
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
next reply other threads:[~2019-06-12 16:58 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-12 16:52 Markus Armbruster [this message]
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
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=20190612165229.26976-1-armbru@redhat.com \
--to=armbru@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 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).