From: Ewan D. Milne Date: Wed, 26 Oct 2016 15:22:53 +0000 (-0400) Subject: scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4d2b496f19f3c2cfaca1e8fa0710688b5ff3811d;p=linux-beck.git scsi: scsi_debug: Fix memory leak if LBP enabled and module is unloaded map_storep was not being vfree()'d in the module_exit call. Cc: Signed-off-by: Ewan D. Milne Reviewed-by: Laurence Oberman Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c index c905709707f0..cf04a364fd8b 100644 --- a/drivers/scsi/scsi_debug.c +++ b/drivers/scsi/scsi_debug.c @@ -5134,6 +5134,7 @@ static void __exit scsi_debug_exit(void) bus_unregister(&pseudo_lld_bus); root_device_unregister(pseudo_primary); + vfree(map_storep); vfree(dif_storep); vfree(fake_storep); kfree(sdebug_q_arr);