From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60338) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cb6Bt-0007Kz-4I for qemu-devel@nongnu.org; Tue, 07 Feb 2017 08:52:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cb6Bs-0007ff-8X for qemu-devel@nongnu.org; Tue, 07 Feb 2017 08:52:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52376) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cb6Bs-0007ed-0X for qemu-devel@nongnu.org; Tue, 07 Feb 2017 08:52:16 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5BA844E4FC for ; Tue, 7 Feb 2017 13:52:15 +0000 (UTC) From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 7 Feb 2017 17:51:43 +0400 Message-Id: <20170207135211.15870-1-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 00/28] Various memory leak fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Hi, 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. Igor Mammedov (1): pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice Marc-Andr=C3=A9 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 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 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 +- 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/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 +- 50 files changed, 316 insertions(+), 167 deletions(-) --=20 2.11.0.295.gd7dffce1c.dirty