All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/6] qapi-related cleanups
@ 2017-01-18 16:16 Eric Blake
  2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 1/6] pci: Use struct instead of QDict to pass back parameters Eric Blake
                   ` (5 more replies)
  0 siblings, 6 replies; 48+ messages in thread
From: Eric Blake @ 2017-01-18 16:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

This is a subset of my earlier post "Rip out dynamic JSON parsing"[1],
hence the v2 marking.  It focuses only on the patches that are worth
having whether or not we decide that ripping out dynamic JSON is the
way to go (code cleanups and testsuite improvements).  I've rebased
it to the current master.

We may still want patch 2 to be subdivided.

[1] https://lists.gnu.org/archive/html/qemu-devel/2016-11/msg05425.html

001/6:[----] [--] 'pci: Use struct instead of QDict to pass back parameters'
002/6:[0028] [FC] 'qdict: Add convenience helpers for wrapped puts'
003/6:[----] [--] 'qlist: Add convenience helpers for wrapped appends'
004/6:[----] [--] 'fdc-test: Avoid deprecated 'change' command'
005/6:[----] [--] 'test-qga: Actually test 0xff sync bytes'
006/6:[----] [-C] 'qapi: Promote blockdev-change-medium arguments to QAPI type'

Eric Blake (6):
  pci: Use struct instead of QDict to pass back parameters
  qdict: Add convenience helpers for wrapped puts
  qlist: Add convenience helpers for wrapped appends
  fdc-test: Avoid deprecated 'change' command
  test-qga: Actually test 0xff sync bytes
  qapi: Promote blockdev-change-medium arguments to QAPI type

 qapi/block-core.json                |  11 ++-
 include/qapi/qmp/qdict.h            |   8 ++
 include/qapi/qmp/qlist.h            |   8 ++
 block.c                             |  59 ++++++---------
 block/archipelago.c                 |   4 +-
 block/blkdebug.c                    |   6 +-
 block/blkverify.c                   |  11 ++-
 block/curl.c                        |   2 +-
 block/file-posix.c                  |   8 +-
 block/file-win32.c                  |   4 +-
 block/iscsi.c                       |   2 +-
 block/nbd.c                         |  41 +++++------
 block/nfs.c                         |  43 +++++------
 block/null.c                        |   2 +-
 block/qcow2.c                       |   4 +-
 block/quorum.c                      |  13 ++--
 block/ssh.c                         |  16 ++--
 block/vvfat.c                       |  10 +--
 blockdev.c                          |  28 +++----
 hw/block/xen_disk.c                 |   2 +-
 hw/pci/pcie_aer.c                   |  36 +++++----
 hw/usb/xen-usb.c                    |  12 +--
 monitor.c                           |  18 ++---
 qapi/qmp-event.c                    |   2 +-
 qemu-img.c                          |   6 +-
 qemu-io.c                           |   2 +-
 qemu-nbd.c                          |   2 +-
 qobject/qdict.c                     |   2 +-
 target/s390x/cpu_models.c           |   4 +-
 tests/check-qdict.c                 | 142 ++++++++++++++++++------------------
 tests/check-qlist.c                 |   2 +-
 tests/fdc-test.c                    |   5 +-
 tests/libqtest.c                    |   8 ++
 tests/test-qga.c                    |  12 +--
 tests/test-qmp-commands.c           |  30 ++++----
 tests/test-qmp-event.c              |  30 ++++----
 tests/test-qobject-output-visitor.c |   6 +-
 util/qemu-option.c                  |   6 +-
 38 files changed, 304 insertions(+), 303 deletions(-)

-- 
2.9.3

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

end of thread, other threads:[~2017-04-11  8:58 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-18 16:16 [Qemu-devel] [PATCH v2 0/6] qapi-related cleanups Eric Blake
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 1/6] pci: Use struct instead of QDict to pass back parameters Eric Blake
2017-01-18 16:57   ` Michael S. Tsirkin
2017-01-19  9:08   ` Marc-André Lureau
2017-01-19  9:23   ` Markus Armbruster
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 2/6] qdict: Add convenience helpers for wrapped puts Eric Blake
2017-01-18 16:16   ` Eric Blake
2017-01-19  9:08   ` [Qemu-devel] " Marc-André Lureau
2017-01-19  9:08     ` Marc-André Lureau
2017-01-19  9:25   ` Markus Armbruster
2017-01-19  9:25     ` Markus Armbruster
2017-01-19 14:38     ` Eric Blake
2017-01-19 14:38       ` Eric Blake
2017-04-04 22:41       ` Eric Blake
2017-04-04 22:41         ` Eric Blake
2017-04-05  8:18         ` Richard W.M. Jones
2017-04-05  8:18           ` Richard W.M. Jones
2017-04-05  8:21           ` Julia Lawall
2017-04-05  8:21             ` Julia Lawall
2017-04-05  8:24             ` Richard W.M. Jones
2017-04-05  8:24               ` Richard W.M. Jones
2017-04-05  8:38               ` Julia Lawall
2017-04-05  8:38                 ` Julia Lawall
2017-04-05  9:01                 ` Richard W.M. Jones
2017-04-05  9:01                   ` Richard W.M. Jones
2017-04-05 11:54                   ` Paolo Bonzini
2017-04-05 11:54                     ` Paolo Bonzini
2017-04-05 15:16                     ` Eric Blake
2017-04-05 15:16                       ` Eric Blake
2017-01-19 17:36   ` Stefan Hajnoczi
2017-01-19 17:36     ` Stefan Hajnoczi
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 3/6] qlist: Add convenience helpers for wrapped appends Eric Blake
2017-01-19  9:08   ` Marc-André Lureau
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 4/6] fdc-test: Avoid deprecated 'change' command Eric Blake
2017-01-19  9:30   ` Markus Armbruster
2017-01-19 14:39     ` Eric Blake
2017-04-05  2:10       ` Eric Blake
2017-04-11  8:49         ` Markus Armbruster
2017-04-11  8:58           ` Kevin Wolf
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 5/6] test-qga: Actually test 0xff sync bytes Eric Blake
2017-01-19  9:08   ` Marc-André Lureau
2017-01-19  9:45   ` Markus Armbruster
2017-01-18 16:16 ` [Qemu-devel] [PATCH v2 6/6] qapi: Promote blockdev-change-medium arguments to QAPI type Eric Blake
2017-01-19  9:07   ` Marc-André Lureau
2017-01-19  9:48   ` Markus Armbruster
2017-01-19 14:42     ` Eric Blake
2017-01-20  7:15       ` Markus Armbruster
2017-01-20 14:38         ` Eric Blake

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.