From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/15] QAPI patches
Date: Thu, 18 Jun 2015 14:25:03 +0200 [thread overview]
Message-ID: <1434630318-22452-1-git-send-email-armbru@redhat.com> (raw)
The following changes since commit 1b58f5a7f6fbe811cc486cd5786483bad5d51bbf:
Merge remote-tracking branch 'remotes/mcayland/tags/qemu-openbios-signed' into staging (2015-06-18 11:36:42 +0100)
are available in the git repository at:
git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2015-06-18
for you to fetch changes up to e1d4210c3a50059a3889cedc44a8aa193fa63d7d:
qapi-types: Bury code dead since commit 6b5abc7 (2015-06-18 14:19:48 +0200)
----------------------------------------------------------------
QAPI patches
----------------------------------------------------------------
Markus Armbruster (15):
MAINTAINERS: Fix up QAPI and QAPI schema file patterns
qapi: Drop bogus command from docs
qapi: Eliminate superfluous QAPISchema attribute input_dir
qapi: Improve a couple of confusing variable names
qapi: Fix file name in error messages for included files
qapi: Simplify inclusion cycle detection
qapi: Fix to reject stray 't', 'f' and 'n'
qapi: Move exprs checking from parse_schema() to check_exprs()
qapi: Better separate the different kinds of helpers
tests/qapi-schema: New flat union array branch test case
qapi: Catch and reject flat union branch of array type
qapi-types: Don't filter out expressions with 'gen'
qapi-types: Drop unused members parameters
qapi-types: Split generate_fwd_builtin() off generate_fwd_struct()
qapi-types: Bury code dead since commit 6b5abc7
MAINTAINERS | 4 +
docs/qapi-code-gen.txt | 2 -
scripts/qapi-types.py | 31 +--
scripts/qapi.py | 346 +++++++++++++------------
tests/Makefile | 3 +-
tests/qapi-schema/flat-union-array-branch.err | 1 +
tests/qapi-schema/flat-union-array-branch.exit | 1 +
tests/qapi-schema/flat-union-array-branch.json | 12 +
tests/qapi-schema/flat-union-array-branch.out | 0
tests/qapi-schema/include-cycle.err | 4 +-
tests/qapi-schema/include-nested-err.err | 2 +-
11 files changed, 212 insertions(+), 194 deletions(-)
create mode 100644 tests/qapi-schema/flat-union-array-branch.err
create mode 100644 tests/qapi-schema/flat-union-array-branch.exit
create mode 100644 tests/qapi-schema/flat-union-array-branch.json
create mode 100644 tests/qapi-schema/flat-union-array-branch.out
Markus Armbruster (15):
MAINTAINERS: Fix up QAPI and QAPI schema file patterns
qapi: Drop bogus command from docs
qapi: Eliminate superfluous QAPISchema attribute input_dir
qapi: Improve a couple of confusing variable names
qapi: Fix file name in error messages for included files
qapi: Simplify inclusion cycle detection
qapi: Fix to reject stray 't', 'f' and 'n'
qapi: Move exprs checking from parse_schema() to check_exprs()
qapi: Better separate the different kinds of helpers
tests/qapi-schema: New flat union array branch test case
qapi: Catch and reject flat union branch of array type
qapi-types: Don't filter out expressions with 'gen'
qapi-types: Drop unused members parameters
qapi-types: Split generate_fwd_builtin() off generate_fwd_struct()
qapi-types: Bury code dead since commit 6b5abc7
MAINTAINERS | 4 +
docs/qapi-code-gen.txt | 2 -
scripts/qapi-types.py | 31 +--
scripts/qapi.py | 346 +++++++++++++------------
tests/Makefile | 3 +-
tests/qapi-schema/flat-union-array-branch.err | 1 +
tests/qapi-schema/flat-union-array-branch.exit | 1 +
tests/qapi-schema/flat-union-array-branch.json | 12 +
tests/qapi-schema/flat-union-array-branch.out | 0
tests/qapi-schema/include-cycle.err | 4 +-
tests/qapi-schema/include-nested-err.err | 2 +-
11 files changed, 212 insertions(+), 194 deletions(-)
create mode 100644 tests/qapi-schema/flat-union-array-branch.err
create mode 100644 tests/qapi-schema/flat-union-array-branch.exit
create mode 100644 tests/qapi-schema/flat-union-array-branch.json
create mode 100644 tests/qapi-schema/flat-union-array-branch.out
--
1.9.3
next reply other threads:[~2015-06-18 12:25 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-18 12:25 Markus Armbruster [this message]
2015-06-18 12:25 ` [Qemu-devel] [PULL 01/15] MAINTAINERS: Fix up QAPI and QAPI schema file patterns Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 02/15] qapi: Drop bogus command from docs Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 03/15] qapi: Eliminate superfluous QAPISchema attribute input_dir Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 04/15] qapi: Improve a couple of confusing variable names Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 05/15] qapi: Fix file name in error messages for included files Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 06/15] qapi: Simplify inclusion cycle detection Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 07/15] qapi: Fix to reject stray 't', 'f' and 'n' Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 08/15] qapi: Move exprs checking from parse_schema() to check_exprs() Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 09/15] qapi: Better separate the different kinds of helpers Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 10/15] tests/qapi-schema: New flat union array branch test case Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 11/15] qapi: Catch and reject flat union branch of array type Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 12/15] qapi-types: Don't filter out expressions with 'gen' Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 13/15] qapi-types: Drop unused members parameters Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 14/15] qapi-types: Split generate_fwd_builtin() off generate_fwd_struct() Markus Armbruster
2015-06-18 12:25 ` [Qemu-devel] [PULL 15/15] qapi-types: Bury code dead since commit 6b5abc7 Markus Armbruster
2015-06-18 13:58 ` [Qemu-devel] [PULL 00/15] QAPI patches 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=1434630318-22452-1-git-send-email-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).