From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: [Qemu-devel] [PATCH v2 00/30] Various memory leak fixes
Date: Tue, 21 Feb 2017 18:14:21 +0400 [thread overview]
Message-ID: <20170221141451.28305-1-marcandre.lureau@redhat.com> (raw)
After this series removing a few memory leaks, make check with ASAN
enabled gives a "clean" run with x86_64-softmmu target (there are
warnings related to coroutine makecontext/swapcontext).
This should help spot memory related regressions when introducing one.
Note: some of these patches were sent and reviewed previously but not
yet applied, I rebased them and included them here for completeness.
v2:
- add r-b tags
- fix gtest compatibility with old glib
- add "migration: fix id leak regression" patch
Igor Mammedov (1):
pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice
Marc-André Lureau (29):
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: replace handle_destroy with unrealize
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
migration: fix id leak regression
include/glib-compat.h | 21 +++++++
include/hw/ptimer.h | 1 +
include/hw/usb.h | 5 --
include/qemu/timer.h | 5 +-
tests/libqos/usb.h | 1 +
tests/libqos/virtio-pci.h | 6 +-
hw/acpi/pcihp.c | 11 ----
hw/core/bus.c | 2 +-
hw/core/ptimer.c | 8 +++
hw/i386/acpi-build.c | 4 +-
hw/usb/bus.c | 9 +--
hw/usb/dev-audio.c | 4 +-
hw/usb/dev-bluetooth.c | 4 +-
hw/usb/dev-hid.c | 4 +-
hw/usb/dev-hub.c | 4 +-
hw/usb/dev-network.c | 4 +-
hw/usb/dev-smartcard-reader.c | 4 +-
hw/usb/dev-storage.c | 16 ++++++
hw/usb/dev-uas.c | 6 +-
hw/usb/dev-wacom.c | 4 +-
hw/usb/host-libusb.c | 4 +-
hw/usb/redirect.c | 4 +-
migration/savevm.c | 1 +
qemu-timer.c | 5 --
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 | 47 ++++++++++------
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 +-
53 files changed, 338 insertions(+), 177 deletions(-)
--
2.11.0.295.gd7dffce1c.dirty
next reply other threads:[~2017-02-21 14:15 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-21 14:14 Marc-André Lureau [this message]
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 01/30] qtest: fix a memory leak Marc-André Lureau
2017-02-21 16:40 ` Philippe Mathieu-Daudé
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 02/30] tests: fix qmp response leak Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 03/30] tests: fix leaks in test-io-channel-command Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 04/30] timer: use an inline function for free Marc-André Lureau
2017-02-22 11:33 ` Paolo Bonzini
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 05/30] glib-compat: add g_test_add_data_func_full fallback Marc-André Lureau
2017-02-21 19:15 ` Eric Blake
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 06/30] tests: fix ptimer leaks Marc-André Lureau
2017-02-22 11:33 ` Paolo Bonzini
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 07/30] tests: fix endianness-test leaks Marc-André Lureau
2017-02-21 16:40 ` Philippe Mathieu-Daudé
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 08/30] tests: fix q35-test leaks Marc-André Lureau
2017-02-28 23:05 ` Eric Blake
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 09/30] tests: fix vhost-user-test leaks Marc-André Lureau
2017-02-28 23:09 ` Eric Blake
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 10/30] tests: fix ide-test leaks Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 11/30] tests: fix hd-geo-test leaks Marc-André Lureau
2017-02-27 13:59 ` Markus Armbruster
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 12/30] tests: fix bios-tables-test leak Marc-André Lureau
2017-02-27 14:03 ` Markus Armbruster
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 13/30] tests: fix ipmi-kcs-test leak Marc-André Lureau
2017-02-21 16:41 ` Philippe Mathieu-Daudé
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 14/30] tests: fix ipmi-bt-test leak Marc-André Lureau
2017-02-21 16:42 ` Philippe Mathieu-Daudé
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 15/30] pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 16/30] tests: fix eepro100-test leak Marc-André Lureau
2017-02-21 14:42 ` Stefan Weil
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 17/30] tests: fix tco-test leaks Marc-André Lureau
2017-02-28 23:10 ` Eric Blake
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 18/30] tests: fix e1000-test leak Marc-André Lureau
2017-02-21 16:42 ` Philippe Mathieu-Daudé
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 19/30] tests: fix i440fx-test leaks Marc-André Lureau
2017-02-27 14:05 ` Markus Armbruster
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 20/30] tests: fix e1000e leaks Marc-André Lureau
2017-02-27 14:12 ` Markus Armbruster
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 21/30] tests: fix virtio-scsi-test leak Marc-André Lureau
2017-02-22 11:33 ` Paolo Bonzini
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 22/30] tests: fix virtio-9p-test leaks Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 23/30] bus: do not unref hotplug handler Marc-André Lureau
2017-02-22 11:33 ` Paolo Bonzini
2017-02-22 13:03 ` Marc-André Lureau
2017-02-22 13:04 ` Paolo Bonzini
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 24/30] usb: replace handle_destroy with unrealize Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 25/30] usb: release the created buses Marc-André Lureau
2017-02-21 22:59 ` Gerd Hoffmann
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 26/30] tests: allows to run single test in usb-hcd-ehci-test Marc-André Lureau
2017-02-21 16:45 ` Philippe Mathieu-Daudé
2017-02-21 23:01 ` Gerd Hoffmann
2017-02-22 8:36 ` Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 27/30] tests: fix usb-test leaks Marc-André Lureau
2017-02-21 22:59 ` Gerd Hoffmann
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 28/30] tests: add specialized device_find function Marc-André Lureau
2017-02-28 23:21 ` Eric Blake
2017-03-01 7:59 ` Marc-André Lureau
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 29/30] tests: fix virtio-blk-test leaks Marc-André Lureau
2017-02-28 23:22 ` Eric Blake
2017-02-21 14:14 ` [Qemu-devel] [PATCH v2 30/30] migration: fix id leak regression Marc-André Lureau
2017-02-21 14:19 ` Dr. David Alan Gilbert
2017-02-21 17:04 ` Philippe Mathieu-Daudé
2017-02-22 8:41 ` Marc-André Lureau
2017-02-28 9:50 ` Dr. David Alan Gilbert
2017-02-27 11:04 ` [Qemu-devel] [PATCH v2 00/30] Various memory leak fixes Marc-André Lureau
2017-02-28 23:23 ` 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=20170221141451.28305-1-marcandre.lureau@redhat.com \
--to=marcandre.lureau@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).