summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2009-08-04 15:22:39 +1000
committerJ. Bruce Fields <bfields@citi.umich.edu>2009-08-04 16:52:44 -0400
commit560ab42ef923aaf2e4347315bdfcc74b2708972c (patch)
treee785cd1ff69276bbeb653311fc67f5472f8b90d3 /net
parent989a19b9b10635eeb91c08cefe6cf82986bd4ee2 (diff)
downloadlinux-0-day-560ab42ef923aaf2e4347315bdfcc74b2708972c.tar.gz
linux-0-day-560ab42ef923aaf2e4347315bdfcc74b2708972c.tar.xz
sunrpc: fix memory leak in unix_gid cache.
When we look up an entry in the uid->gidlist cache, we take a reference to the content but don't drop the reference to the cache entry. So it never gets freed. Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/svcauth_unix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
index 5c865e2d299e8..799ff6ef28b8d 100644
--- a/net/sunrpc/svcauth_unix.c
+++ b/net/sunrpc/svcauth_unix.c
@@ -658,6 +658,7 @@ static int unix_gid_find(uid_t uid, struct group_info **gip,
case 0:
*gip = ug->gi;
get_group_info(*gip);
+ cache_put(&ug->h, &unix_gid_cache);
return 0;
default:
return -EAGAIN;