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 /kernel/time/timer_stats.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 'kernel/time/timer_stats.c')
-rw-r--r-- | kernel/time/timer_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/timer_stats.c b/kernel/time/timer_stats.c index 8ed62fda16c6..3c38fb5eae1b 100644 --- a/kernel/time/timer_stats.c +++ b/kernel/time/timer_stats.c | |||
@@ -399,7 +399,7 @@ static struct file_operations tstats_fops = { | |||
399 | .read = seq_read, | 399 | .read = seq_read, |
400 | .write = tstats_write, | 400 | .write = tstats_write, |
401 | .llseek = seq_lseek, | 401 | .llseek = seq_lseek, |
402 | .release = seq_release, | 402 | .release = single_release, |
403 | }; | 403 | }; |
404 | 404 | ||
405 | void __init init_timer_stats(void) | 405 | void __init init_timer_stats(void) |