From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL v2 00/28] QAPI patches for 2017-05-04
Date: Fri, 5 May 2017 08:34:42 +0200 [thread overview]
Message-ID: <1493966082-9352-1-git-send-email-armbru@redhat.com> (raw)
[v2]: Fix trailing space, note tweaks to PATCH 12 properly in the
commit message
The following changes since commit e619b14746e5d8c0e53061661fd0e1da01fd4d60:
Merge remote-tracking branch 'sthibault/tags/samuel-thibault' into staging (2017-05-02 15:16:29 +0100)
are available in the git repository at:
git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2017-05-04-v2
for you to fetch changes up to 3cbba78072340a52a0720caf6d175ad4e3f79901:
qmp-shell: improve help (2017-05-05 08:29:45 +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-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 | 177 +++++++++++++++++-------------------
70 files changed, 800 insertions(+), 666 deletions(-)
create mode 100644 scripts/coccinelle/qobject.cocci
--
2.7.4
next reply other threads:[~2017-05-05 6:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-05 6:34 Markus Armbruster [this message]
2017-05-08 16:42 ` [Qemu-devel] [PULL v2 00/28] QAPI patches for 2017-05-04 Stefan Hajnoczi
2017-05-08 18:09 ` Eric Blake
2017-05-08 19:57 ` Eric Blake
2017-05-09 7:32 ` Markus Armbruster
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=1493966082-9352-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).