[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <df6ab78e106c6b792322fddbd75db0f3e2da69e3.camel@HansenPartnership.com>
Date: Sat, 13 Feb 2021 13:07:30 -0800
From: James Bottomley <James.Bottomley@...senPartnership.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
Linus Torvalds <torvalds@...ux-foundation.org>
Cc: linux-scsi <linux-scsi@...r.kernel.org>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: [GIT PULL] SCSI fixes for 5.11-rc6
One fix for scsi_debug that fixes a memory leak on module removal.
The patch is available here:
git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-fixes
The short changelog is:
Maurizio Lombardi (1):
scsi: scsi_debug: Fix a memory leak
And the diffstat:
drivers/scsi/scsi_debug.c | 1 +
1 file changed, 1 insertion(+)
With full diff below.
James
---
diff --git a/drivers/scsi/scsi_debug.c b/drivers/scsi/scsi_debug.c
index 4a08c450b756..b6540b92f566 100644
--- a/drivers/scsi/scsi_debug.c
+++ b/drivers/scsi/scsi_debug.c
@@ -6881,6 +6881,7 @@ static void __exit scsi_debug_exit(void)
sdebug_erase_all_stores(false);
xa_destroy(per_store_ap);
+ kfree(sdebug_q_arr);
}
device_initcall(scsi_debug_init);
Powered by blists - more mailing lists