diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-07-31 03:38:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-31 18:39:40 -0400 |
commit | 5ea473a1dfeca2ee38c5dd458c1174d129e6b64e (patch) | |
tree | 7ed66c900149f452ebeda379ce3264da9515b9dd /fs/proc/base.c | |
parent | ff8e210a9550ad760a62e9803938cd04f9fb0851 (diff) |
Fix leaks on /proc/{*/sched,sched_debug,timer_list,timer_stats}
On every open/close one struct seq_operations leaks.
Kudos to /proc/slab_allocators.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/base.c')
-rw-r--r-- | fs/proc/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index 3c77d5a64e7c..19489b0d5554 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -927,7 +927,7 @@ static const struct file_operations proc_pid_sched_operations = { | |||
927 | .read = seq_read, | 927 | .read = seq_read, |
928 | .write = sched_write, | 928 | .write = sched_write, |
929 | .llseek = seq_lseek, | 929 | .llseek = seq_lseek, |
930 | .release = seq_release, | 930 | .release = single_release, |
931 | }; | 931 | }; |
932 | 932 | ||
933 | #endif | 933 | #endif |