aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfsd/export.c
diff options
context:
space:
mode:
authorStanislav Kinsbursky <skinsbursky@parallels.com>2012-03-28 19:09:01 +0400
committerJ. Bruce Fields <bfields@redhat.com>2012-04-11 17:55:00 -0400
commitd4bb527e9e6c00e6e24f3475fe65db7775ff6c63 (patch)
treede2e533486768f53da9e445e792ff5d28c0b30e1 /fs/nfsd/export.c
parentnfsd: don't use locks_in_grace to determine whether to call nfs4_grace_end (diff)
downloadlinux-dev-d4bb527e9e6c00e6e24f3475fe65db7775ff6c63.tar.xz
linux-dev-d4bb527e9e6c00e6e24f3475fe65db7775ff6c63.zip
nfsd: use passed cache_detail pointer expkey_parse()
Using of hard-coded svc_expkey_cache pointer in expkey_parse() looks redundant. Moreover, global cache will be replaced with per-net instance soon. Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/export.c')
-rw-r--r--fs/nfsd/export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
index 8e9689abbc0c..71c5ce35a1a5 100644
--- a/fs/nfsd/export.c
+++ b/fs/nfsd/export.c
@@ -163,7 +163,7 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
cache_flush();
out:
if (ek)
- cache_put(&ek->h, &svc_expkey_cache);
+ cache_put(&ek->h, cd);
if (dom)
auth_domain_put(dom);
kfree(buf);