The patch titled Fix leak on /proc/lockdep_stats has been removed from the -mm tree. Its filename was fix-leak-on-proc-lockdep_stats.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix leak on /proc/lockdep_stats From: Alexey Dobriyan <adobriyan@xxxxx> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/lockdep_proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/lockdep_proc.c~fix-leak-on-proc-lockdep_stats kernel/lockdep_proc.c --- a/kernel/lockdep_proc.c~fix-leak-on-proc-lockdep_stats +++ a/kernel/lockdep_proc.c @@ -160,7 +160,7 @@ static const struct file_operations proc .open = lockdep_open, .read = seq_read, .llseek = seq_lseek, - .release = single_release, + .release = seq_release, }; static void lockdep_stats_debug_show(struct seq_file *m) @@ -346,7 +346,7 @@ static const struct file_operations proc .open = lockdep_stats_open, .read = seq_read, .llseek = seq_lseek, - .release = seq_release, + .release = single_release, }; #ifdef CONFIG_LOCK_STAT _ Patches currently in -mm which might be from adobriyan@xxxxx are origin.patch consolidate-ptrace_detach.patch use-list_head-in-binfmt-handling-update.patch make-unregister_binfmt-return-void.patch slab_panic-more-proc-posix-timers-shmem.patch add-kernel-notifierc.patch add-kernel-notifierc-fix.patch add-kernel-notifierc-fix-2.patch single_open-seq_release-leak-diagnostics.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html