qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/30] Trivial patches for 2015-06-03
@ 2015-06-03 13:08 Michael Tokarev
  2015-06-03 13:08 ` [Qemu-devel] [PULL 01/30] iscsi: Remove pointless runtime check of macro value Michael Tokarev
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Michael Tokarev @ 2015-06-03 13:08 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Michael Tokarev

Here's another trivial-patches pull request.

There are many patches in there this time, mostly due to
work by Shannon Zhao, who has been busy chasing memory
leaks all over the place.  I haven't applied _all_ of
his patches yes, there's one series pending with more
complex patches around qemu_allocate_irqs(), these
needs some more review.

There's also a fix for CVE-2015-4037 (predictable
directory name in slirp smb code).

Please consider applying/pulling.

Thanks,

/mjt

The following changes since commit 42d58e7c6760cb9c55627c28ae538e27dcf2f144:

  Merge remote-tracking branch 'remotes/sstabellini/tags/xen-15-06-02-tag' into staging (2015-06-02 16:47:31 +0100)

are available in the git repository at:

  git://git.corpit.ru/qemu.git tags/pull-trivial-patches-2015-06-03

for you to fetch changes up to de3852877f1e452321352fdb7e678f079876a41b:

  configure: postfix --extra-cflags to QEMU_CFLAGS (2015-06-03 16:04:39 +0300)

----------------------------------------------------------------
trivial patches for 2015-06-03

----------------------------------------------------------------
Alex Bennée (1):
      configure: postfix --extra-cflags to QEMU_CFLAGS

Chen Hanxiao (1):
      docs/writing-qmp-commands: fix a typo

Dr. David Alan Gilbert (1):
      Add -incoming help text

Fam Zheng (1):
      iscsi: Remove pointless runtime check of macro value

Michael Tokarev (1):
      slirp: use less predictable directory name in /tmp for smb config (CVE-2015-4037)

Paolo Bonzini (1):
      translate-all: delete prototype for non-existent function

Peter Crosthwaite (2):
      microblaze: cpu: Delete MMAP_SHIFT definition
      device-tree: Make a common-obj

Peter Krempa (1):
      util: socket: Add missing localaddr and localport option for DGRAM socket

Sai Pavan Boddu (1):
      cadence_gem: Fix Rx buffer size field mask

Shannon Zhao (20):
      hw/i386/pc_piix: Fix memory leak
      hw/ide/pci: Fix memory leak
      hw/i386/acpi-build: decref after use
      vl: fix memory leak spotted by valgrind
      hw/alpha/dp264.c: Fix memory leak spotted by valgrind
      hw/ppc/e500.c: Fix memory leak
      hw/arm/omap_sx1.c: Fix memory leak spotted by valgrind
      hw/intc/exynos4210_gic.c: Fix memory leak by adjusting order
      hw/i386/pc: Fix misusing qemu_allocate_irqs for single irq
      hw/isa/lpc_ich9.c: Fix misusing qemu_allocate_irqs for single irq
      hw/isa/i82378.c: Fix misusing qemu_allocate_irqs for single irq
      hw/timer/arm_timer.c: Fix misusing qemu_allocate_irqs for single irq
      hw/sparc/sun4m.c: Fix misusing qemu_allocate_irqs for single irq
      hw/ppc/prep.c: Fix misusing qemu_allocate_irqs for single irq
      hw/lm32/lm32_boards.c: Fix misusing qemu_allocate_irqs for single irq
      hw/lm32/milkymist.c: Fix misusing qemu_allocate_irqs for single irq
      hw/unicore32/puv3.c: Fix misusing qemu_allocate_irqs for single irq
      hw/alpha/typhoon.c: Fix misusing qemu_allocate_irqs for single irq
      hw/arm/nseries.c: Fix misusing qemu_allocate_irqs for single irq
      hw/display/tc6393xb.c: Fix misusing qemu_allocate_irqs for single irq

 Makefile.objs                 |  2 ++
 Makefile.target               |  1 -
 block/iscsi.c                 |  7 -------
 configure                     |  2 +-
 device_tree.c                 |  1 -
 docs/writing-qmp-commands.txt |  2 +-
 hw/alpha/dp264.c              |  7 ++++---
 hw/alpha/typhoon.c            |  8 ++++----
 hw/arm/nseries.c              |  5 ++---
 hw/arm/omap_sx1.c             |  2 +-
 hw/display/tc6393xb.c         |  2 +-
 hw/i386/acpi-build.c          |  1 +
 hw/i386/pc.c                  |  4 ++--
 hw/i386/pc_piix.c             | 11 +++++------
 hw/i386/pc_q35.c              |  4 +---
 hw/ide/pci.c                  |  5 +----
 hw/intc/exynos4210_gic.c      |  7 +++----
 hw/isa/i82378.c               |  7 ++-----
 hw/isa/lpc_ich9.c             |  5 +----
 hw/lm32/lm32_boards.c         | 10 ++++------
 hw/lm32/milkymist.c           |  5 ++---
 hw/net/cadence_gem.c          |  2 +-
 hw/ppc/e500.c                 |  1 +
 hw/ppc/prep.c                 |  5 ++---
 hw/sparc/sun4m.c              |  6 ++----
 hw/timer/arm_timer.c          |  6 ++----
 hw/unicore32/puv3.c           |  8 ++++----
 include/hw/i386/pc.h          |  2 +-
 net/slirp.c                   |  7 +++----
 qemu-options.hx               |  9 ++++++++-
 target-microblaze/cpu.h       |  1 -
 translate-all.h               |  1 -
 util/qemu-sockets.c           |  6 ++++++
 vl.c                          |  5 +++--
 34 files changed, 71 insertions(+), 86 deletions(-)

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

end of thread, other threads:[~2015-06-04 13:04 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-03 13:08 [Qemu-devel] [PULL 00/30] Trivial patches for 2015-06-03 Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 01/30] iscsi: Remove pointless runtime check of macro value Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 02/30] microblaze: cpu: Delete MMAP_SHIFT definition Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 03/30] util: socket: Add missing localaddr and localport option for DGRAM socket Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 04/30] docs/writing-qmp-commands: fix a typo Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 05/30] hw/i386/pc_piix: Fix memory leak Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 06/30] hw/ide/pci: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 07/30] hw/i386/acpi-build: decref after use Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 08/30] device-tree: Make a common-obj Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 09/30] vl: fix memory leak spotted by valgrind Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 10/30] hw/alpha/dp264.c: Fix " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 11/30] hw/ppc/e500.c: Fix memory leak Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 12/30] hw/arm/omap_sx1.c: Fix memory leak spotted by valgrind Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 13/30] hw/intc/exynos4210_gic.c: Fix memory leak by adjusting order Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 14/30] hw/i386/pc: Fix misusing qemu_allocate_irqs for single irq Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 15/30] hw/isa/lpc_ich9.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 16/30] hw/isa/i82378.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 17/30] hw/timer/arm_timer.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 18/30] hw/sparc/sun4m.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 19/30] hw/ppc/prep.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 20/30] hw/lm32/lm32_boards.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 21/30] hw/lm32/milkymist.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 22/30] hw/unicore32/puv3.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 23/30] hw/alpha/typhoon.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 24/30] hw/arm/nseries.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 25/30] hw/display/tc6393xb.c: " Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 26/30] Add -incoming help text Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 27/30] translate-all: delete prototype for non-existent function Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 28/30] slirp: use less predictable directory name in /tmp for smb config (CVE-2015-4037) Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 29/30] cadence_gem: Fix Rx buffer size field mask Michael Tokarev
2015-06-03 13:08 ` [Qemu-devel] [PULL 30/30] configure: postfix --extra-cflags to QEMU_CFLAGS Michael Tokarev
2015-06-04 13:03 ` [Qemu-devel] [PULL 00/30] Trivial patches for 2015-06-03 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).