From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Kevin Wolf" <kwolf@redhat.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Jason Wang" <jasowang@redhat.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Stefan Hajnoczi" <stefanha@redhat.com>,
"Andreas Färber" <afaerber@suse.de>
Subject: [Qemu-devel] [PATCH 0/9] Clean up around error_get_pretty(), qerror_report_err()
Date: Tue, 10 Feb 2015 17:34:06 +0100 [thread overview]
Message-ID: <1423586055-4932-1-git-send-email-armbru@redhat.com> (raw)
Tree-wide cleanup, but the tree-wide changes are mechanical. If
nobody objects, I'll route it through my own tree.
Depends on my "[PATCH] vhost-scsi: Improve error reporting for invalid
vhostfd".
PATCH 01 is responsible for the bulk of the diffstat. I could split
off one or more of block, arm, x86+pci, scsi, usb, char, net for
maintainers to pick up after the main patch got in. Cc'ing a few
maintainers who might prefer that, to give them a chance to ask for
it.
PATCH 02 gets rid of an unnecessary use of qerror_report_err(). This
is the patch that causes the dependency mentioned above.
The remaining patches clean up inappropriate uses of
qerror_report_err().
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Andreas Färber <afaerber@suse.de>
Markus Armbruster (9):
error: New convenience function error_report_err()
monitor: Clean up around monitor_handle_fd_param()
monitor: Avoid qerror_report_err() outside QMP command handlers
net: Avoid qerror_report_err() outside QMP command handlers
numa: Avoid qerror_report_err() outside QMP command handlers
tpm: Avoid qerror_report_err() outside QMP command handlers
vl: Avoid qerror_report_err() outside QMP command handlers
qemu-img: Avoid qerror_report_err() outside QMP command handlers
qemu-char: Avoid qerror_report_err() outside QMP command handlers
arch_init.c | 3 +--
block/sheepdog.c | 39 +++++++++++++--------------------------
blockdev.c | 12 ++++--------
hw/arm/exynos4210.c | 4 ++--
hw/arm/highbank.c | 4 ++--
hw/arm/integratorcp.c | 4 ++--
hw/arm/realview.c | 6 +++---
hw/arm/versatilepb.c | 4 ++--
hw/arm/vexpress.c | 2 +-
hw/arm/xilinx_zynq.c | 8 ++++----
hw/block/virtio-blk.c | 3 +--
hw/char/serial.c | 6 ++----
hw/i386/kvm/pci-assign.c | 14 +++++---------
hw/i386/pc.c | 5 ++---
hw/i386/smbios.c | 14 +++++++-------
hw/ide/qdev.c | 3 +--
hw/pci/pci-hotplug-old.c | 3 +--
hw/pci/pci.c | 3 +--
hw/scsi/vhost-scsi.c | 2 +-
hw/usb/dev-network.c | 3 +--
hw/usb/host-libusb.c | 3 +--
hw/usb/redirect.c | 3 +--
include/monitor/monitor.h | 3 +--
include/qapi/error.h | 5 +++++
monitor.c | 18 ++----------------
net/net.c | 9 +++------
net/socket.c | 4 +++-
net/tap.c | 11 ++++++++---
numa.c | 8 +++-----
qemu-char.c | 6 ++----
qemu-img.c | 9 +++------
qemu-io.c | 3 +--
qemu-nbd.c | 12 ++++--------
qom/cpu.c | 3 +--
target-i386/cpu.c | 3 +--
target-sparc/cpu.c | 3 +--
tpm.c | 6 ++----
util/error.c | 14 ++++++++++----
util/qemu-config.c | 9 +++------
vl.c | 18 +++++++-----------
40 files changed, 118 insertions(+), 174 deletions(-)
--
1.9.3
next reply other threads:[~2015-02-10 16:34 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-10 16:34 Markus Armbruster [this message]
2015-02-10 16:34 ` [Qemu-devel] [PATCH 1/9] error: New convenience function error_report_err() Markus Armbruster
2015-02-10 16:44 ` Paolo Bonzini
2015-02-10 22:04 ` Eduardo Habkost
2015-02-11 10:17 ` Paolo Bonzini
2015-02-11 13:13 ` [Qemu-devel] Coccinelle semantic patches (was Re: [PATCH 1/9] error: New convenience function error_report_err()) Eduardo Habkost
2015-02-11 12:47 ` [Qemu-devel] [PATCH 1/9] error: New convenience function error_report_err() Markus Armbruster
2015-02-10 17:20 ` Eric Blake
2015-02-11 10:04 ` Kevin Wolf
2015-02-11 12:24 ` Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 2/9] monitor: Clean up around monitor_handle_fd_param() Markus Armbruster
2015-02-10 21:09 ` Eric Blake
2015-02-10 16:34 ` [Qemu-devel] [PATCH 3/9] monitor: Avoid qerror_report_err() outside QMP command handlers Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 4/9] net: " Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 5/9] numa: " Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 6/9] tpm: " Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 7/9] vl: " Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 8/9] qemu-img: " Markus Armbruster
2015-02-10 16:34 ` [Qemu-devel] [PATCH 9/9] qemu-char: " Markus Armbruster
2015-02-11 15:28 ` [Qemu-devel] [PATCH 0/9] Clean up around error_get_pretty(), qerror_report_err() Eric Blake
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=1423586055-4932-1-git-send-email-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=afaerber@suse.de \
--cc=jasowang@redhat.com \
--cc=kraxel@redhat.com \
--cc=kwolf@redhat.com \
--cc=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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).