[PULL 0/6] QAPI patches for 2020-01-14

Markus Armbruster posted 6 patches 4 years, 3 months ago
Test docker-mingw@fedora passed
Test checkpatch passed
Test docker-quick@centos7 passed
Test FreeBSD passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200114102055.24058-1-armbru@redhat.com
Maintainers: "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Michael Roth <mdroth@linux.vnet.ibm.com>, Markus Armbruster <armbru@redhat.com>
docs/devel/qapi-code-gen.txt             | 19 +++++--
Makefile                                 |  4 +-
monitor/misc.c                           |  7 ++-
qga/main.c                               |  2 +-
tests/test-qmp-cmds.c                    |  1 +
.gitignore                               |  1 +
qapi/Makefile.objs                       |  1 +
qga/Makefile.objs                        |  1 +
scripts/qapi/commands.py                 | 17 ++++--
scripts/qapi/events.py                   |  2 +-
scripts/qapi/gen.py                      | 28 +++++-----
scripts/qapi/schema.py                   | 92 ++++++++++++++++++++------------
scripts/qapi/types.py                    |  5 +-
scripts/qapi/visit.py                    |  8 +--
tests/.gitignore                         |  1 +
tests/Makefile.include                   |  9 +++-
tests/qapi-schema/empty.out              |  1 +
tests/qapi-schema/include-repetition.out |  6 +--
tests/qapi-schema/qapi-schema-test.out   | 24 ++++-----
19 files changed, 144 insertions(+), 85 deletions(-)
[PULL 0/6] QAPI patches for 2020-01-14
Posted by Markus Armbruster 4 years, 3 months ago
My previous pull request failed tests with Python 2, which is now
gone.  Try again.

The following changes since commit dc65a5bdc9fa543690a775b50d4ffbeb22c56d6d:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-5.0-20200108' into staging (2020-01-10 16:15:04 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2020-01-14

for you to fetch changes up to 3bef3aaec91815b75a78a4c12ca92ac3cec53faf:

  qapi: Simplify QAPISchemaModularCVisitor (2020-01-14 11:01:58 +0100)

----------------------------------------------------------------
QAPI patches for 2020-01-14

----------------------------------------------------------------
Markus Armbruster (6):
      qapi: Tweak "command returns a nice type" check for clarity
      tests/Makefile.include: Fix missing test-qapi-emit-events.[ch]
      qapi: Generate command registration stuff into separate files
      qapi: Proper intermediate representation for modules
      qapi: Fix code generation for empty modules
      qapi: Simplify QAPISchemaModularCVisitor

 docs/devel/qapi-code-gen.txt             | 19 +++++--
 Makefile                                 |  4 +-
 monitor/misc.c                           |  7 ++-
 qga/main.c                               |  2 +-
 tests/test-qmp-cmds.c                    |  1 +
 .gitignore                               |  1 +
 qapi/Makefile.objs                       |  1 +
 qga/Makefile.objs                        |  1 +
 scripts/qapi/commands.py                 | 17 ++++--
 scripts/qapi/events.py                   |  2 +-
 scripts/qapi/gen.py                      | 28 +++++-----
 scripts/qapi/schema.py                   | 92 ++++++++++++++++++++------------
 scripts/qapi/types.py                    |  5 +-
 scripts/qapi/visit.py                    |  8 +--
 tests/.gitignore                         |  1 +
 tests/Makefile.include                   |  9 +++-
 tests/qapi-schema/empty.out              |  1 +
 tests/qapi-schema/include-repetition.out |  6 +--
 tests/qapi-schema/qapi-schema-test.out   | 24 ++++-----
 19 files changed, 144 insertions(+), 85 deletions(-)

-- 
2.21.1


Re: [PULL 0/6] QAPI patches for 2020-01-14
Posted by Peter Maydell 4 years, 3 months ago
On Tue, 14 Jan 2020 at 10:22, Markus Armbruster <armbru@redhat.com> wrote:
>
> My previous pull request failed tests with Python 2, which is now
> gone.  Try again.
>
> The following changes since commit dc65a5bdc9fa543690a775b50d4ffbeb22c56d6d:
>
>   Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-5.0-20200108' into staging (2020-01-10 16:15:04 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2020-01-14
>
> for you to fetch changes up to 3bef3aaec91815b75a78a4c12ca92ac3cec53faf:
>
>   qapi: Simplify QAPISchemaModularCVisitor (2020-01-14 11:01:58 +0100)
>
> ----------------------------------------------------------------
> QAPI patches for 2020-01-14
>
> ----------------------------------------------------------------
> Markus Armbruster (6):
>       qapi: Tweak "command returns a nice type" check for clarity
>       tests/Makefile.include: Fix missing test-qapi-emit-events.[ch]
>       qapi: Generate command registration stuff into separate files
>       qapi: Proper intermediate representation for modules
>       qapi: Fix code generation for empty modules
>       qapi: Simplify QAPISchemaModularCVisitor


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.0
for any user-visible changes.

-- PMM