All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/28] Leak patches
@ 2017-03-01  9:04 Marc-André Lureau
  2017-03-01  9:04 ` [Qemu-devel] [PULL 01/28] qtest: fix a memory leak Marc-André Lureau
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Marc-André Lureau @ 2017-03-01  9:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Marc-André Lureau

The following changes since commit e7c83a885f865128ae3cf1946f8cb538b63cbfba:

  vhost-user: delay vhost_user_stop (2017-02-28 19:11:15 +0000)

are available in the git repository at:

  git@github.com:elmarco/qemu.git tags/leak-pull-request

for you to fetch changes up to 80e1eea37a25a7696137e680285e36d0bfdc9f34:

  tests: fix virtio-blk-test leaks (2017-03-01 11:58:57 +0400)

----------------------------------------------------------------

----------------------------------------------------------------

Igor Mammedov (1):
  pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice

Marc-André Lureau (27):
  qtest: fix a memory leak
  tests: fix qmp response leak
  tests: fix leaks in test-io-channel-command
  timer: use an inline function for free
  glib-compat: add g_test_add_data_func_full fallback
  tests: fix ptimer leaks
  tests: fix endianness-test leaks
  tests: fix q35-test leaks
  tests: fix vhost-user-test leaks
  tests: fix ide-test leaks
  tests: fix hd-geo-test leaks
  tests: fix bios-tables-test leak
  tests: fix ipmi-kcs-test leak
  tests: fix ipmi-bt-test leak
  tests: fix eepro100-test leak
  tests: fix tco-test leaks
  tests: fix e1000-test leak
  tests: fix i440fx-test leaks
  tests: fix e1000e leaks
  tests: fix virtio-scsi-test leak
  tests: fix virtio-9p-test leaks
  bus: do not unref hotplug handler
  usb: release the created buses
  tests: allows to run single test in usb-hcd-ehci-test
  tests: fix usb-test leaks
  tests: add specialized device_find function
  tests: fix virtio-blk-test leaks

 include/glib-compat.h           |  21 +++++++
 include/hw/ptimer.h             |   1 +
 include/qemu/timer.h            |   5 +-
 tests/libqos/usb.h              |   1 +
 tests/libqos/virtio-pci.h       |   6 +-
 hw/acpi/pcihp.c                 |  11 ----
 hw/acpi/piix4.c                 |   2 +
 hw/core/bus.c                   |   2 +-
 hw/core/ptimer.c                |   8 +++
 hw/i386/acpi-build.c            |   4 +-
 hw/usb/dev-storage.c            |  16 ++++++
 hw/usb/dev-uas.c                |   2 +
 qtest.c                         |   1 +
 tests/bios-tables-test.c        |   2 +-
 tests/e1000-test.c              |   1 +
 tests/e1000e-test.c             |   6 +-
 tests/eepro100-test.c           |   1 +
 tests/endianness-test.c         |   3 +
 tests/hd-geo-test.c             |  53 +++++++++++------
 tests/i440fx-test.c             |   5 ++
 tests/ide-test.c                |  12 ++++
 tests/ipmi-bt-test.c            |   1 +
 tests/ipmi-kcs-test.c           |   1 +
 tests/libqos/usb.c              |   6 ++
 tests/libqos/virtio-pci.c       |  38 +++++++++++--
 tests/libqtest.c                |  10 ----
 tests/postcopy-test.c           |   2 +-
 tests/ptimer-test-stubs.c       |   5 ++
 tests/ptimer-test.c             | 122 ++++++++++++++++++++++++----------------
 tests/pvpanic-test.c            |   1 +
 tests/q35-test.c                |   3 +
 tests/tco-test.c                |  35 +++++++-----
 tests/test-filter-mirror.c      |   2 +-
 tests/test-filter-redirector.c  |   4 +-
 tests/test-io-channel-command.c |   6 +-
 tests/usb-hcd-ehci-test.c       |  19 +++++--
 tests/usb-hcd-uhci-test.c       |   1 +
 tests/vhost-user-test.c         |  11 ++--
 tests/virtio-9p-test.c          |   2 +-
 tests/virtio-blk-test.c         |  29 +++++-----
 tests/virtio-scsi-test.c        |   2 +-
 util/qemu-timer.c               |   5 --
 42 files changed, 319 insertions(+), 149 deletions(-)

-- 
2.12.0.rc2.3.gc93709801

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

end of thread, other threads:[~2017-03-02 17:39 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-01  9:04 [Qemu-devel] [PULL 00/28] Leak patches Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 01/28] qtest: fix a memory leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 02/28] tests: fix qmp response leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 03/28] tests: fix leaks in test-io-channel-command Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 04/28] timer: use an inline function for free Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 05/28] glib-compat: add g_test_add_data_func_full fallback Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 06/28] tests: fix ptimer leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 07/28] tests: fix endianness-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 08/28] tests: fix q35-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 09/28] tests: fix vhost-user-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 10/28] tests: fix ide-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 11/28] tests: fix hd-geo-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 12/28] tests: fix bios-tables-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 13/28] tests: fix ipmi-kcs-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 14/28] tests: fix ipmi-bt-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 15/28] pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 16/28] tests: fix eepro100-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 17/28] tests: fix tco-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 18/28] tests: fix e1000-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 19/28] tests: fix i440fx-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 20/28] tests: fix e1000e leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 21/28] tests: fix virtio-scsi-test leak Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 22/28] tests: fix virtio-9p-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 23/28] bus: do not unref hotplug handler Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 24/28] usb: release the created buses Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 25/28] tests: allows to run single test in usb-hcd-ehci-test Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 26/28] tests: fix usb-test leaks Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 27/28] tests: add specialized device_find function Marc-André Lureau
2017-03-01  9:04 ` [Qemu-devel] [PULL 28/28] tests: fix virtio-blk-test leaks Marc-André Lureau
2017-03-02 17:38 ` [Qemu-devel] [PULL 00/28] Leak patches Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.