qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] Error reporting patches for 2018-02-06
@ 2018-02-06 19:50 Markus Armbruster
  2018-02-06 19:50 ` [Qemu-devel] [PULL 01/14] error: Improve documentation of error_append_hint() Markus Armbruster
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Markus Armbruster @ 2018-02-06 19:50 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 20e0d439a6ded635ec89f6135c08cd5541c68962:

  Merge remote-tracking branch 'remotes/rth/tags/pull-hppa-20180204' into staging (2018-02-06 14:21:41 +0000)

are available in the git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-error-2018-02-06

for you to fetch changes up to 493d89bf74d17fa304b7a02f531b024df2003fea:

  tcg: Replace fprintf(stderr, "*\n" with error_report() (2018-02-06 18:29:46 +0100)

----------------------------------------------------------------
Error reporting patches for 2018-02-06

----------------------------------------------------------------
Alistair Francis (13):
      audio: Replace AUDIO_FUNC with __func__
      hw/arm: Replace fprintf(stderr, "*\n" with error_report()
      hw/dma: Replace fprintf(stderr, "*\n" with error_report()
      hw/lm32: Replace fprintf(stderr, "*\n" with error_report()
      hw/mips: Replace fprintf(stderr, "*\n" with error_report()
      hw/moxie: Replace fprintf(stderr, "*\n" with error_report()
      hw/openrisc: Replace fprintf(stderr, "*\n" with error_report()
      hw/pci*: Replace fprintf(stderr, "*\n" with error_report()
      hw/ppc: Replace fprintf(stderr, "*\n" with error_report()
      hw/sd: Replace fprintf(stderr, "*\n" with DPRINTF()
      hw/sparc*: Replace fprintf(stderr, "*\n" with error_report()
      hw/xen*: Replace fprintf(stderr, "*\n" with error_report()
      tcg: Replace fprintf(stderr, "*\n" with error_report()

Markus Armbruster (1):
      error: Improve documentation of error_append_hint()

 audio/alsaaudio.c          |  4 ++--
 audio/audio.c              | 40 ++++++++++++++++-----------------
 audio/audio_int.h          |  6 -----
 audio/audio_pt_int.c       | 28 +++++++++++------------
 audio/audio_template.h     | 26 ++++++++++-----------
 audio/dsoundaudio.c        |  2 +-
 audio/mixeng.c             |  2 +-
 audio/ossaudio.c           | 10 ++++-----
 audio/paaudio.c            | 56 +++++++++++++++++++++++-----------------------
 audio/sdlaudio.c           |  2 +-
 audio/wavaudio.c           |  2 +-
 cpus.c                     | 10 ++++-----
 exec.c                     |  6 ++---
 hw/arm/armv7m.c            |  2 +-
 hw/arm/boot.c              | 16 ++++++-------
 hw/arm/gumstix.c           | 13 ++++++-----
 hw/arm/mainstone.c         |  7 +++---
 hw/arm/musicpal.c          |  2 +-
 hw/arm/omap1.c             |  5 +++--
 hw/arm/omap2.c             |  3 ++-
 hw/arm/omap_sx1.c          |  2 +-
 hw/arm/pxa2xx.c            |  7 +++---
 hw/arm/vexpress.c          |  8 +++----
 hw/arm/z2.c                |  6 ++---
 hw/dma/soc_dma.c           | 36 ++++++++++++++---------------
 hw/lm32/lm32_boards.c      |  7 +++---
 hw/lm32/milkymist.c        |  7 +++---
 hw/mips/mips_fulong2e.c    | 13 +++++------
 hw/mips/mips_jazz.c        |  4 ++--
 hw/mips/mips_malta.c       | 16 ++++++-------
 hw/mips/mips_mipssim.c     | 11 +++++----
 hw/mips/mips_r4k.c         | 16 ++++++-------
 hw/moxie/moxiesim.c        | 13 +++++------
 hw/openrisc/openrisc_sim.c |  4 ++--
 hw/pci-host/bonito.c       |  6 ++---
 hw/pci/pci.c               |  4 ++--
 hw/ppc/e500.c              | 16 ++++++-------
 hw/ppc/mac_newworld.c      |  2 +-
 hw/ppc/mac_oldworld.c      |  2 +-
 hw/ppc/ppc405_boards.c     | 15 +++++--------
 hw/ppc/ppc440_bamboo.c     | 16 ++++++-------
 hw/ppc/prep.c              |  4 ++--
 hw/ppc/virtex_ml507.c      |  4 ++--
 hw/sd/sd.c                 |  7 +++---
 hw/sparc/leon3.c           | 16 ++++++-------
 hw/sparc/sun4m.c           | 16 ++++++-------
 hw/sparc64/niagara.c       |  4 ++--
 hw/sparc64/sun4u.c         | 10 ++++-----
 hw/xen/xen-common.c        |  5 +++--
 hw/xenpv/xen_machine_pv.c  |  9 ++++----
 include/qapi/error.h       |  8 +++++++
 vl.c                       |  2 +-
 52 files changed, 265 insertions(+), 273 deletions(-)

-- 
2.13.6

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

end of thread, other threads:[~2018-02-07 18:01 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-06 19:50 [Qemu-devel] [PULL 00/14] Error reporting patches for 2018-02-06 Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 01/14] error: Improve documentation of error_append_hint() Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 02/14] audio: Replace AUDIO_FUNC with __func__ Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 03/14] hw/arm: Replace fprintf(stderr, "*\n" with error_report() Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 04/14] hw/dma: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 05/14] hw/lm32: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 06/14] hw/mips: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 07/14] hw/moxie: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 08/14] hw/openrisc: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 09/14] hw/pci*: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 10/14] hw/ppc: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 11/14] hw/sd: Replace fprintf(stderr, "*\n" with DPRINTF() Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 12/14] hw/sparc*: Replace fprintf(stderr, "*\n" with error_report() Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 13/14] hw/xen*: " Markus Armbruster
2018-02-06 19:50 ` [Qemu-devel] [PULL 14/14] tcg: " Markus Armbruster
2018-02-07 18:00 ` [Qemu-devel] [PULL 00/14] Error reporting patches for 2018-02-06 Peter Maydell

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