aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfsd/export.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-08-12 02:55:22 -0400
committerJ. Bruce Fields <bfields@redhat.com>2010-09-07 19:21:19 -0400
commit17cebf658e088935d4bdebfc7ad9800e9fc4a0b2 (patch)
tree7bc6c1d8de35bce17da188cba13688671d517907 /fs/nfsd/export.c
parent1132b26029918aa8fb5ba24a81b5c234e61f356c (diff)
sunrpc: extract some common sunrpc_cache code from nfsd
Rather can duplicating this idiom twice, put it in an inline function. This reduces the usage of 'expiry_time' out side the sunrpc/cache.c code and thus the impact of a change that is about to be made to that field. Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/export.c')
-rw-r--r--fs/nfsd/export.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
index c2a4f71d87dd..e56827b88fd2 100644
--- a/fs/nfsd/export.c
+++ b/fs/nfsd/export.c
@@ -935,10 +935,9 @@ static void exp_fsid_unhash(struct svc_export *exp)
935 935
936 ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid); 936 ek = exp_get_fsid_key(exp->ex_client, exp->ex_fsid);
937 if (!IS_ERR(ek)) { 937 if (!IS_ERR(ek)) {
938 ek->h.expiry_time = get_seconds()-1; 938 sunrpc_invalidate(&ek->h, &svc_expkey_cache);
939 cache_put(&ek->h, &svc_expkey_cache); 939 cache_put(&ek->h, &svc_expkey_cache);
940 } 940 }
941 svc_expkey_cache.nextcheck = get_seconds();
942} 941}
943 942
944static int exp_fsid_hash(svc_client *clp, struct svc_export *exp) 943static int exp_fsid_hash(svc_client *clp, struct svc_export *exp)
@@ -973,10 +972,9 @@ static void exp_unhash(struct svc_export *exp)
973 972
974 ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino); 973 ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino);
975 if (!IS_ERR(ek)) { 974 if (!IS_ERR(ek)) {
976 ek->h.expiry_time = get_seconds()-1; 975 sunrpc_invalidate(&ek->h, &svc_expkey_cache);
977 cache_put(&ek->h, &svc_expkey_cache); 976 cache_put(&ek->h, &svc_expkey_cache);
978 } 977 }
979 svc_expkey_cache.nextcheck = get_seconds();
980} 978}
981 979
982/* 980/*
@@ -1097,8 +1095,7 @@ out:
1097static void 1095static void
1098exp_do_unexport(svc_export *unexp) 1096exp_do_unexport(svc_export *unexp)
1099{ 1097{
1100 unexp->h.expiry_time = get_seconds()-1; 1098 sunrpc_invalidate(&unexp->h, &svc_export_cache);
1101 svc_export_cache.nextcheck = get_seconds();
1102 exp_unhash(unexp); 1099 exp_unhash(unexp);
1103 exp_fsid_unhash(unexp); 1100 exp_fsid_unhash(unexp);
1104} 1101}