aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStanislav Kinsbursky <skinsbursky@parallels.com>2012-03-28 11:09:35 -0400
committerJ. Bruce Fields <bfields@redhat.com>2012-04-11 17:55:04 -0400
commit83e0ed700d4d2cad2f555ae536fafd531f55b6d0 (patch)
treef8582d3f601b45a82d0a9c904c87bbb192bd7981
parentf2c7ea10f901b7648eb61f1da7243588351f1dac (diff)
nfsd: use hash table from cache detail in nfsd export seq ops
Hard-code is redundant and will prevent from making caches per net ns. Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r--fs/nfsd/export.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
index 149532023778..9fe7156f504d 100644
--- a/fs/nfsd/export.c
+++ b/fs/nfsd/export.c
@@ -1035,6 +1035,7 @@ static void *e_start(struct seq_file *m, loff_t *pos)
1035 unsigned hash, export; 1035 unsigned hash, export;
1036 struct cache_head *ch; 1036 struct cache_head *ch;
1037 struct cache_detail *cd = m->private; 1037 struct cache_detail *cd = m->private;
1038 struct cache_head **export_table = cd->hash_table;
1038 1039
1039 read_lock(&cd->hash_lock); 1040 read_lock(&cd->hash_lock);
1040 if (!n--) 1041 if (!n--)
@@ -1061,6 +1062,8 @@ static void *e_next(struct seq_file *m, void *p, loff_t *pos)
1061{ 1062{
1062 struct cache_head *ch = p; 1063 struct cache_head *ch = p;
1063 int hash = (*pos >> 32); 1064 int hash = (*pos >> 32);
1065 struct cache_detail *cd = m->private;
1066 struct cache_head **export_table = cd->hash_table;
1064 1067
1065 if (p == SEQ_START_TOKEN) 1068 if (p == SEQ_START_TOKEN)
1066 hash = 0; 1069 hash = 0;