Commit e71139fd authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Greg Kroah-Hartman

Fix leak on /proc/lockdep_stats

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 397f3076
...@@ -339,7 +339,7 @@ static const struct file_operations proc_lockdep_stats_operations = { ...@@ -339,7 +339,7 @@ static const struct file_operations proc_lockdep_stats_operations = {
.open = lockdep_stats_open, .open = lockdep_stats_open,
.read = seq_read, .read = seq_read,
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = single_release,
}; };
static int __init lockdep_proc_init(void) static int __init lockdep_proc_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment