diff options
author | Anurup m <anurup.m@huawei.com> | 2013-04-29 15:05:52 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-07 19:57:25 -0700 |
commit | 204435f3d3f96513892dfd13aa65298abfeed130 (patch) | |
tree | aeb7cbf7766683cfca462b53a70e6302538ebf4e /fs | |
parent | 2f0441ee08f711413b85c8c3a75734913fc6bca9 (diff) | |
download | linux-stable-204435f3d3f96513892dfd13aa65298abfeed130.tar.gz linux-stable-204435f3d3f96513892dfd13aa65298abfeed130.tar.bz2 linux-stable-204435f3d3f96513892dfd13aa65298abfeed130.zip |
fs/fscache/stats.c: fix memory leak
commit ec686c9239b4d472052a271c505d04dae84214cc upstream.
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@huawei.com>
Cc: shyju pv <shyju.pv@huawei.com>
Cc: Sanil kumar <sanil.kumar@huawei.com>
Cc: Nataraj m <nataraj.m@huawei.com>
Cc: Li Zefan <lizefan@huawei.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fscache/stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fscache/stats.c b/fs/fscache/stats.c index 4765190d537f..73c0bd7f7424 100644 --- a/fs/fscache/stats.c +++ b/fs/fscache/stats.c @@ -276,5 +276,5 @@ const struct file_operations fscache_stats_fops = { .open = fscache_stats_open, .read = seq_read, .llseek = seq_lseek, - .release = seq_release, + .release = single_release, }; |