dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Stanislav Kinsbursky 2012-03-28 19:09:01 +04:00 committed by J. Bruce Fields
parent 33dcc481ed
commit d4bb527e9e
1 changed files with 1 additions and 1 deletions

View File

@ -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);