All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix for binary_sysctl() memory leak
@ 2011-12-15  2:44 Michel Lespinasse
  2011-12-15 22:19 ` Andrew Morton
  0 siblings, 1 reply; 8+ messages in thread
From: Michel Lespinasse @ 2011-12-15  2:44 UTC (permalink / raw)
  To: Al Viro, Christoph Hellwig; +Cc: Andrew Morton, linux-kernel

binary_sysctl() calls sysctl_getname() which allocates from
names_cache slab usin __getname()

The matching function to free the name is __putname(), and not
putname() which should be used only to match getname() allocations.

Signed-off-by: Michel Lespinasse <walken@google.com>
---
 kernel/sysctl_binary.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c
index e8bffbe..2ce1b30 100644
--- a/kernel/sysctl_binary.c
+++ b/kernel/sysctl_binary.c
@@ -1354,7 +1354,7 @@ static ssize_t binary_sysctl(const int *name, int nlen,
 
 	fput(file);
 out_putname:
-	putname(pathname);
+	__putname(pathname);
 out:
 	return result;
 }
-- 
1.7.3.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-12-18  1:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-15  2:44 [PATCH] Fix for binary_sysctl() memory leak Michel Lespinasse
2011-12-15 22:19 ` Andrew Morton
2011-12-15 22:38   ` Michel Lespinasse
2011-12-15 22:44     ` Andrew Morton
2011-12-15 22:59       ` Michel Lespinasse
2011-12-15 23:07         ` Michel Lespinasse
2011-12-17 22:14       ` Eric W. Biederman
2011-12-18  1:23         ` Michel Lespinasse

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.