From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 0/8] Error reporting patches
Date: Fri, 18 Sep 2015 15:22:46 +0200 [thread overview]
Message-ID: <1442582574-14275-1-git-send-email-armbru@redhat.com> (raw)
The following changes since commit 16a1b6e97c2a2919fd296db4bea2f9da2ad3cc4d:
target-cris: update CPU state save/load to use VMStateDescription (2015-09-17 14:31:38 +0100)
are available in the git repository at:
git://repo.or.cz/qemu/armbru.git tags/pull-error-2015-09-18
for you to fetch changes up to 0bdaa3a429c6d07cd437b442a1f15f70be1addaa:
memory: Fix bad error handling in memory_region_init_ram_ptr() (2015-09-18 14:39:39 +0200)
----------------------------------------------------------------
Error reporting patches
----------------------------------------------------------------
Eric Blake (2):
hmp: Allow for error message hints on HMP
error: Copy location information in error_copy()
Markus Armbruster (5):
MAINTAINERS: Add "Error reporting" entry
error: New error_fatal
Fix bad error handling after memory_region_init_ram()
loader: Fix memory_region_init_resizeable_ram() error handling
memory: Fix bad error handling in memory_region_init_ram_ptr()
Stefan Hajnoczi (1):
error: only prepend timestamp on stderr
MAINTAINERS | 8 ++++
hw/arm/armv7m.c | 2 +-
hw/arm/exynos4210.c | 8 ++--
hw/arm/highbank.c | 2 +-
hw/arm/integratorcp.c | 2 +-
hw/arm/mainstone.c | 2 +-
hw/arm/musicpal.c | 2 +-
hw/arm/omap1.c | 2 +-
hw/arm/omap2.c | 2 +-
hw/arm/omap_sx1.c | 4 +-
hw/arm/palm.c | 2 +-
hw/arm/pxa2xx.c | 8 ++--
hw/arm/realview.c | 6 +--
hw/arm/spitz.c | 2 +-
hw/arm/stellaris.c | 4 +-
hw/arm/stm32f205_soc.c | 4 +-
hw/arm/tosa.c | 2 +-
hw/arm/vexpress.c | 6 +--
hw/arm/xilinx_zynq.c | 2 +-
hw/arm/xlnx-zynqmp.c | 2 +-
hw/block/onenand.c | 2 +-
hw/core/loader.c | 2 +-
hw/cris/axis_dev88.c | 2 +-
hw/display/cg3.c | 4 +-
hw/display/qxl.c | 6 +--
hw/display/sm501.c | 2 +-
hw/display/tc6393xb.c | 2 +-
hw/display/tcx.c | 4 +-
hw/display/vga.c | 2 +-
hw/display/vmware_vga.c | 2 +-
hw/i386/pc.c | 2 +-
hw/i386/pc_sysfw.c | 4 +-
hw/input/milkymist-softusb.c | 4 +-
hw/m68k/an5206.c | 2 +-
hw/m68k/mcf5208.c | 2 +-
hw/microblaze/petalogix_ml605_mmu.c | 4 +-
hw/microblaze/petalogix_s3adsp1800_mmu.c | 4 +-
hw/mips/mips_fulong2e.c | 2 +-
hw/mips/mips_jazz.c | 4 +-
hw/mips/mips_malta.c | 2 +-
hw/mips/mips_mipssim.c | 2 +-
hw/mips/mips_r4k.c | 2 +-
hw/moxie/moxiesim.c | 4 +-
hw/net/milkymist-minimac2.c | 2 +-
hw/openrisc/openrisc_sim.c | 2 +-
hw/pci-host/prep.c | 2 +-
hw/pci/pci.c | 2 +-
hw/ppc/mac_newworld.c | 2 +-
hw/ppc/mac_oldworld.c | 2 +-
hw/ppc/ppc405_boards.c | 7 ++--
hw/ppc/ppc405_uc.c | 2 +-
hw/s390x/s390-virtio-ccw.c | 2 +-
hw/s390x/sclp.c | 3 +-
hw/sh4/r2d.c | 2 +-
hw/sh4/shix.c | 6 +--
hw/sparc/leon3.c | 2 +-
hw/sparc/sun4m.c | 6 +--
hw/sparc64/sun4u.c | 4 +-
hw/tricore/tricore_testboard.c | 18 ++++++---
hw/unicore32/puv3.c | 2 +-
hw/xtensa/sim.c | 4 +-
hw/xtensa/xtfpga.c | 7 ++--
include/qapi/error.h | 18 +++++++++
memory.c | 2 +-
numa.c | 4 +-
qdev-monitor.c | 42 +++++++------------
util/error.c | 69 ++++++++++++++++++++++++++------
util/qemu-error.c | 2 +-
util/qemu-option.c | 11 ++---
xen-hvm.c | 2 +-
70 files changed, 213 insertions(+), 152 deletions(-)
--
2.4.3
next reply other threads:[~2015-09-18 13:23 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-18 13:22 Markus Armbruster [this message]
2015-09-18 13:22 ` [Qemu-devel] [PULL 1/8] error: only prepend timestamp on stderr Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 2/8] hmp: Allow for error message hints on HMP Markus Armbruster
2015-09-22 15:23 ` Kevin Wolf
2015-09-22 17:02 ` Eric Blake
2015-09-22 23:02 ` [Qemu-devel] [Qemu-block] " John Snow
2015-09-18 13:22 ` [Qemu-devel] [PULL 3/8] error: Copy location information in error_copy() Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 4/8] MAINTAINERS: Add "Error reporting" entry Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 5/8] error: New error_fatal Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 6/8] Fix bad error handling after memory_region_init_ram() Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 7/8] loader: Fix memory_region_init_resizeable_ram() error handling Markus Armbruster
2015-09-18 13:22 ` [Qemu-devel] [PULL 8/8] memory: Fix bad error handling in memory_region_init_ram_ptr() Markus Armbruster
2015-09-18 15:57 ` [Qemu-devel] [PULL 0/8] Error reporting patches Peter Maydell
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=1442582574-14275-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).