All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 00/10] easier unboxed visits/qapi implicit types
@ 2016-03-03 16:16 Eric Blake
  2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 01/10] qapi: Rename 'fields' to 'members' in generator Eric Blake
                   ` (10 more replies)
  0 siblings, 11 replies; 15+ messages in thread
From: Eric Blake @ 2016-03-03 16:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

This is patches 1-9 of v2:
https://lists.gnu.org/archive/html/qemu-devel/2016-02/msg06079.html

the rest of that series needs a bit more work on commit messages,
so I'll post it later as v4.

Depends on Markus' qapi-next branch.

Also available as a tag at this location:
git fetch git://repo.or.cz/qemu/ericb.git qapi-implicit-v3

and will soon be part of my branch at:
http://repo.or.cz/qemu/ericb.git/shortlog/refs/heads/qapi

backport-diff gets confused by a patch split and some renames:

001/10:[down] 'qapi: Rename 'fields' to 'members' in generator'
002/10:[down] 'qapi: Rename 'fields' to 'members' in generated C code'
003/10:[----] [--] 'qapi-visit: Expose visit_type_FOO_members()'
004/10:[0061] [FC] 'qapi: Update docs to match recent generator changes'
005/10:[----] [--] 'chardev: Shorten references into ChardevBackend'
006/10:[0014] [FC] 'util: Shorten references into SocketAddress'
007/10:[0025] [FC] 'ui: Shorten references into InputEvent'
008/10:[down] 'qapi: Avoid use of 'data' member of QAPI unions'
009/10:[----] [--] 'chardev: Drop useless ChardevDummy type'
010/10:[0006] [FC] 'qapi: Drop useless 'data' member of unions'

Eric Blake (10):
  qapi: Rename 'fields' to 'members' in generator
  qapi: Rename 'fields' to 'members' in generated C code
  qapi-visit: Expose visit_type_FOO_members()
  qapi: Update docs to match recent generator changes
  chardev: Shorten references into ChardevBackend
  util: Shorten references into SocketAddress
  ui: Shorten references into InputEvent
  qapi: Avoid use of 'data' member of QAPI unions
  chardev: Drop useless ChardevDummy type
  qapi: Drop useless 'data' member of unions

 scripts/qapi.py                         |  20 +-
 scripts/qapi-commands.py                |   4 +-
 scripts/qapi-event.py                   |   4 +-
 scripts/qapi-types.py                   |  19 +-
 scripts/qapi-visit.py                   |  51 ++---
 backends/baum.c                         |   2 +-
 backends/msmouse.c                      |   2 +-
 block/nbd.c                             |  14 +-
 blockdev.c                              |  31 +--
 hw/char/escc.c                          |  12 +-
 hw/input/hid.c                          |  36 ++--
 hw/input/ps2.c                          |  27 ++-
 hw/input/virtio-input-hid.c             |  33 +--
 qemu-char.c                             | 177 +++++++++-------
 qemu-nbd.c                              |   9 +-
 replay/replay-input.c                   |  31 +--
 tests/test-io-channel-socket.c          |  34 +--
 ui/input-legacy.c                       |  25 ++-
 ui/input.c                              |  56 ++---
 ui/vnc.c                                |  39 ++--
 util/qemu-sockets.c                     |  11 +-
 docs/qapi-code-gen.txt                  | 364 +++++++++++++++++---------------
 docs/qmp-spec.txt                       |   4 +-
 qapi-schema.json                        |  15 +-
 tests/Makefile                          |   1 -
 tests/qapi-schema/qapi-schema-test.json |   2 +-
 tests/qapi-schema/union-clash-data.err  |   0
 tests/qapi-schema/union-clash-data.exit |   1 -
 tests/qapi-schema/union-clash-data.json |   7 -
 tests/qapi-schema/union-clash-data.out  |   9 -
 30 files changed, 540 insertions(+), 500 deletions(-)
 delete mode 100644 tests/qapi-schema/union-clash-data.err
 delete mode 100644 tests/qapi-schema/union-clash-data.exit
 delete mode 100644 tests/qapi-schema/union-clash-data.json
 delete mode 100644 tests/qapi-schema/union-clash-data.out

-- 
2.5.0

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

end of thread, other threads:[~2016-03-04 16:44 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03 16:16 [Qemu-devel] [PATCH v3 00/10] easier unboxed visits/qapi implicit types Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 01/10] qapi: Rename 'fields' to 'members' in generator Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 02/10] qapi: Rename 'fields' to 'members' in generated C code Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 03/10] qapi-visit: Expose visit_type_FOO_members() Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 04/10] qapi: Update docs to match recent generator changes Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 05/10] chardev: Shorten references into ChardevBackend Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 06/10] util: Shorten references into SocketAddress Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 07/10] ui: Shorten references into InputEvent Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 08/10] qapi: Avoid use of 'data' member of QAPI unions Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 09/10] chardev: Drop useless ChardevDummy type Eric Blake
2016-03-04 14:40   ` Markus Armbruster
2016-03-04 15:25     ` Eric Blake
2016-03-04 15:42   ` [Qemu-devel] [PATCH v3.5 " Eric Blake
2016-03-03 16:16 ` [Qemu-devel] [PATCH v3 10/10] qapi: Drop useless 'data' member of unions Eric Blake
2016-03-04 16:44 ` [Qemu-devel] [PATCH v3 00/10] easier unboxed visits/qapi implicit types Markus Armbruster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.