From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZeqh-000528-SK for qemu-devel@nongnu.org; Tue, 16 Aug 2016 09:56:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZeqd-0007T4-MD for qemu-devel@nongnu.org; Tue, 16 Aug 2016 09:56:10 -0400 Received: from mail-pa0-x242.google.com ([2607:f8b0:400e:c03::242]:36255) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZeqd-0007T0-EP for qemu-devel@nongnu.org; Tue, 16 Aug 2016 09:56:07 -0400 Received: by mail-pa0-x242.google.com with SMTP id ez1so5345517pab.3 for ; Tue, 16 Aug 2016 06:56:06 -0700 (PDT) From: Ashijeet Acharya Date: Tue, 16 Aug 2016 19:25:58 +0530 Message-Id: <1471355758-8197-1-git-send-email-ashijeetacharya@gmail.com> In-Reply-To: <9dbfdcae-5c86-cbd9-7d54-261ac1a61e76@redhat.com> References: <9dbfdcae-5c86-cbd9-7d54-261ac1a61e76@redhat.com> Subject: [Qemu-devel] [PATCH] Fix memory leak in ide_register_restart_cb() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: jsnow@redhat.com Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, Ashijeet Acharya Fix a memory leak in ide_register_restart_cb() in hw/ide/core.c and add idebus_unrealize() in hw/ide/qdev.c to have calls to qemu_del_vm_change_state_handler() to deal with the dangling change state handler during hot-unplugging ide devices which might lead to a crash. Signed-off-by: Ashijeet Acharya --- hw/ide/core.c | 2 +- hw/ide/qdev.c | 14 ++++++++++++++ include/hw/ide/internal.h | 1 + 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/hw/ide/core.c b/hw/ide/core.c index 45b6df1..eecbb47 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -2582,7 +2582,7 @@ static void ide_restart_cb(void *opaque, int running, RunState state) void ide_register_restart_cb(IDEBus *bus) { if (bus->dma->ops->restart_dma) { - qemu_add_vm_change_state_handler(ide_restart_cb, bus); + bus->vmstate = qemu_add_vm_change_state_handler(ide_restart_cb, bus); } } diff --git a/hw/ide/qdev.c b/hw/ide/qdev.c index 67c76bf..6f75f77 100644 --- a/hw/ide/qdev.c +++ b/hw/ide/qdev.c @@ -31,6 +31,7 @@ /* --------------------------------- */ static char *idebus_get_fw_dev_path(DeviceState *dev); +static void idebus_unrealize(DeviceState *qdev, Error **errp); static Property ide_props[] = { DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1), @@ -345,6 +346,7 @@ static void ide_device_class_init(ObjectClass *klass, void *data) k->init = ide_qdev_init; set_bit(DEVICE_CATEGORY_STORAGE, k->categories); k->bus_type = TYPE_IDE_BUS; + k->unrealize = idebus_unrealize; k->props = ide_props; } @@ -368,3 +370,15 @@ static void ide_register_types(void) } type_init(ide_register_types) + +static void idebus_unrealize(DeviceState *qdev, Error **errp) +{ + IDEBus *bus = DO_UPCAST(IDEBus, qbus, qdev->parent_bus); + + if (bus->dma->ops->restart_dma) { + if (bus->vmstate) { + qemu_del_vm_change_state_handler(bus->vmstate); + } + } +} diff --git a/include/hw/ide/internal.h b/include/hw/ide/internal.h index 7824bc3..2103261 100644 --- a/include/hw/ide/internal.h +++ b/include/hw/ide/internal.h @@ -480,6 +480,7 @@ struct IDEBus { uint8_t retry_unit; int64_t retry_sector_num; uint32_t retry_nsector; + VMChangeStateEntry *vmstate; }; #define TYPE_IDE_DEVICE "ide-device" -- 2.6.2