The patch titled Subject: fs/fscache/stats.c: fix memory leak has been removed from the -mm tree. Its filename was fs-fscache-statsc-fix-memory-leak.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Anurup m <anurup.m@xxxxxxxxxx> Subject: fs/fscache/stats.c: fix memory leak There is a kernel memory leak observed when the proc file /proc/fs/fscache/stats is read. The reason is that in fscache_stats_open, single_open is called and the respective release function is not called during release. Hence fix with correct release function - single_release(). Addresses https://bugzilla.kernel.org/show_bug.cgi?id=57101 Signed-off-by: Anurup m <anurup.m@xxxxxxxxxx> Cc: shyju pv <shyju.pv@xxxxxxxxxx> Cc: Sanil kumar <sanil.kumar@xxxxxxxxxx> Cc: Nataraj m <nataraj.m@xxxxxxxxxx> Cc: Li Zefan <lizefan@xxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: <stable@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/fscache/stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/fscache/stats.c~fs-fscache-statsc-fix-memory-leak fs/fscache/stats.c --- a/fs/fscache/stats.c~fs-fscache-statsc-fix-memory-leak +++ a/fs/fscache/stats.c @@ -287,5 +287,5 @@ const struct file_operations fscache_sta .open = fscache_stats_open, .read = seq_read, .llseek = seq_lseek, - .release = seq_release, + .release = single_release, }; _ Patches currently in -mm which might be from anurup.m@xxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html