commit | a09581f29434ae67f8fc6ae487e4f30a7f0d019f | [log] [tgz] |
---|---|---|
author | Stanislav Kinsbursky <skinsbursky@parallels.com> | Wed Mar 28 19:09:22 2012 +0400 |
committer | J. Bruce Fields <bfields@redhat.com> | Wed Apr 11 17:55:02 2012 -0400 |
tree | 1cde7fcd7cf89ed98f92dc26b2439e335251be11 | |
parent | 71234978e81ee515c8025d087a197561b311c183 [diff] [blame] |
nfsd: use exp_put() for svc_export_cache put This patch replaces cache_put() call for svc_export_cache by exp_put() call. Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c index 68454e7..cc79300 100644 --- a/fs/nfsd/nfsfh.c +++ b/fs/nfsd/nfsfh.c
@@ -636,7 +636,7 @@ #endif } if (exp) { - cache_put(&exp->h, &svc_export_cache); + exp_put(exp); fhp->fh_export = NULL; } return;