qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v3 00/28] QAPI patches for 2017-05-04
@ 2017-05-09  8:06 Markus Armbruster
  2017-05-09  8:06 ` [Qemu-devel] [PULL v3 01/28] tests/check-qdict: Fix missing brackets Markus Armbruster
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Markus Armbruster @ 2017-05-09  8:06 UTC (permalink / raw)
  To: qemu-devel

[v3]: Rebase & resolve semantic conflicts, with help from Eric Blake
[v2]: Fix trailing space, note tweaks to PATCH 12 properly in the
commit message 

The following changes since commit dd1559bb267becbb838de41132ef60771d183e5d:

  Merge remote-tracking branch 'elmarco/tags/chr-tests-pull-request' into staging (2017-05-05 17:07:55 +0100)

are available in the git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2017-05-04-v3

for you to fetch changes up to dcd3b25d656d346205dc0f2254723fccf0264e45:

  qmp-shell: improve help (2017-05-09 09:14:41 +0200)

----------------------------------------------------------------
QAPI patches for 2017-05-04

----------------------------------------------------------------
Dr. David Alan Gilbert (1):
      tests/check-qdict: Fix missing brackets

Eric Blake (10):
      pci: Use struct instead of QDict to pass back parameters
      pci: Reduce scope of error injection
      coccinelle: Add script to remove useless QObject casts
      qobject: Drop useless QObject casts
      qobject: Add helper macros for common scalar insertions
      qobject: Use simpler QDict/QList scalar insertion macros
      block: Simplify bdrv_append_temp_snapshot() logic
      QemuOpts: Simplify qemu_opts_to_qdict()
      fdc-test: Avoid deprecated 'change' command
      test-qga: Actually test 0xff sync bytes

John Snow (1):
      qmp-shell: add persistent command history

Marc-André Lureau (5):
      test-keyval: fix leaks
      qmp-shell: add -N option to skip negotiate
      qmp-shell: Cope with query-commands error
      qmp-shell: don't show version greeting if unavailable
      qmp-shell: improve help

Markus Armbruster (11):
      sockets: Prepare vsock_parse() for flattened SocketAddress
      sockets: Prepare inet_parse() for flattened SocketAddress
      qapi: New QAPI_CLONE_MEMBERS()
      sockets: Rename SocketAddress to SocketAddressLegacy
      sockets: Rename SocketAddressFlat to SocketAddress
      sockets: Limit SocketAddressLegacy to external interfaces
      sockets: Delete unused helper socket_address_crumple()
      qmp: Improve QMP dispatch error messages
      qobject-input-visitor: Document full_name_nth()
      qapi: Document intended use of @name within alternate visits
      qobject-input-visitor: Catch misuse of end_struct vs. end_list

 MAINTAINERS                         |   1 +
 block.c                             |  70 ++++++--------
 block/blkdebug.c                    |   8 +-
 block/blkverify.c                   |  11 +--
 block/curl.c                        |   2 +-
 block/file-posix.c                  |   8 +-
 block/file-win32.c                  |   4 +-
 block/gluster.c                     |  48 +++++-----
 block/nbd.c                         |  77 ++++++++-------
 block/nfs.c                         |  43 ++++-----
 block/null.c                        |   2 +-
 block/qcow2.c                       |   4 +-
 block/quorum.c                      |  16 ++--
 block/rbd.c                         |  16 ++--
 block/sheepdog.c                    |  20 ++--
 block/snapshot.c                    |   2 +-
 block/ssh.c                         |  16 ++--
 block/vvfat.c                       |  10 +-
 block/vxhs.c                        |   6 +-
 blockdev-nbd.c                      |  21 +++--
 blockdev.c                          |  30 +++---
 chardev/char-socket.c               |  36 +++----
 chardev/char-udp.c                  |  20 ++--
 hmp.c                               |   3 +-
 hw/block/xen_disk.c                 |   2 +-
 hw/pci/pcie_aer.c                   |  48 ++++++----
 hw/usb/xen-usb.c                    |  12 +--
 include/block/nbd.h                 |   3 +
 include/hw/pci/pcie_aer.h           |   4 -
 include/io/channel-socket.h         |   4 +-
 include/qapi/clone-visitor.h        |  14 +++
 include/qapi/qmp/qdict.h            |   8 ++
 include/qapi/qmp/qlist.h            |   8 ++
 include/qapi/visitor.h              |   6 +-
 include/qemu/sockets.h              |  16 ++--
 io/dns-resolver.c                   |  17 ++--
 migration/rdma.c                    |   4 +-
 migration/socket.c                  |  20 ++--
 monitor.c                           |  23 +++--
 qapi-schema.json                    |  35 +++----
 qapi/block-core.json                |   6 +-
 qapi/block.json                     |   2 +-
 qapi/qapi-clone-visitor.c           |  13 +++
 qapi/qmp-dispatch.c                 |  14 +--
 qapi/qmp-event.c                    |   2 +-
 qapi/qobject-input-visitor.c        |  32 ++++++-
 qemu-img.c                          |   6 +-
 qemu-io.c                           |   2 +-
 qemu-nbd.c                          |  11 +--
 qga/main.c                          |   4 +-
 qobject/qdict.c                     |   2 +-
 scripts/coccinelle/qobject.cocci    |  35 +++++++
 scripts/qmp/qmp-shell               |  44 ++++++++-
 target/s390x/cpu_models.c           |   4 +-
 tests/check-qdict.c                 | 144 ++++++++++++++--------------
 tests/check-qlist.c                 |   4 +-
 tests/device-introspect-test.c      |   4 +-
 tests/fdc-test.c                    |   8 +-
 tests/libqtest.c                    |   8 ++
 tests/test-char.c                   |   5 +-
 tests/test-io-channel-socket.c      |  52 +++++------
 tests/test-keyval.c                 |   4 +
 tests/test-qemu-opts.c              |   4 +-
 tests/test-qga.c                    |  41 ++++++--
 tests/test-qmp-commands.c           |  30 +++---
 tests/test-qmp-event.c              |  30 +++---
 tests/test-qobject-output-visitor.c |   6 +-
 ui/vnc-auth-sasl.c                  |   5 +-
 ui/vnc.c                            |  68 +++++++-------
 util/qemu-option.c                  |   6 +-
 util/qemu-sockets.c                 | 181 +++++++++++++++++-------------------
 71 files changed, 806 insertions(+), 669 deletions(-)
 create mode 100644 scripts/coccinelle/qobject.cocci

-- 
2.7.4

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

end of thread, other threads:[~2017-05-09 17:52 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-09  8:06 [Qemu-devel] [PULL v3 00/28] QAPI patches for 2017-05-04 Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 01/28] tests/check-qdict: Fix missing brackets Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 02/28] test-keyval: fix leaks Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 03/28] pci: Use struct instead of QDict to pass back parameters Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 04/28] pci: Reduce scope of error injection Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 05/28] coccinelle: Add script to remove useless QObject casts Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 06/28] qobject: Drop " Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 07/28] qobject: Add helper macros for common scalar insertions Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 08/28] qobject: Use simpler QDict/QList scalar insertion macros Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 09/28] block: Simplify bdrv_append_temp_snapshot() logic Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 10/28] QemuOpts: Simplify qemu_opts_to_qdict() Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 11/28] fdc-test: Avoid deprecated 'change' command Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 12/28] test-qga: Actually test 0xff sync bytes Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 13/28] sockets: Prepare vsock_parse() for flattened SocketAddress Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 14/28] sockets: Prepare inet_parse() " Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 15/28] qapi: New QAPI_CLONE_MEMBERS() Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 16/28] sockets: Rename SocketAddress to SocketAddressLegacy Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 17/28] sockets: Rename SocketAddressFlat to SocketAddress Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 18/28] sockets: Limit SocketAddressLegacy to external interfaces Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 19/28] sockets: Delete unused helper socket_address_crumple() Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 20/28] qmp: Improve QMP dispatch error messages Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 21/28] qobject-input-visitor: Document full_name_nth() Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 22/28] qapi: Document intended use of @name within alternate visits Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 23/28] qobject-input-visitor: Catch misuse of end_struct vs. end_list Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 24/28] qmp-shell: add persistent command history Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 25/28] qmp-shell: add -N option to skip negotiate Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 26/28] qmp-shell: Cope with query-commands error Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 27/28] qmp-shell: don't show version greeting if unavailable Markus Armbruster
2017-05-09  8:06 ` [Qemu-devel] [PULL v3 28/28] qmp-shell: improve help Markus Armbruster
2017-05-09 17:52 ` [Qemu-devel] [PULL v3 00/28] QAPI patches for 2017-05-04 Stefan Hajnoczi

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).