aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfsd/nfscache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfsd/nfscache.c b/fs/nfsd/nfscache.c
index 18509bd6f587..ca05f6dc3544 100644
--- a/fs/nfsd/nfscache.c
+++ b/fs/nfsd/nfscache.c
@@ -119,6 +119,10 @@ nfsd_reply_cache_free(struct svc_cacherep *rp)
119 119
120int nfsd_reply_cache_init(void) 120int nfsd_reply_cache_init(void)
121{ 121{
122 INIT_LIST_HEAD(&lru_head);
123 max_drc_entries = nfsd_cache_size_limit();
124 num_drc_entries = 0;
125
122 register_shrinker(&nfsd_reply_cache_shrinker); 126 register_shrinker(&nfsd_reply_cache_shrinker);
123 drc_slab = kmem_cache_create("nfsd_drc", sizeof(struct svc_cacherep), 127 drc_slab = kmem_cache_create("nfsd_drc", sizeof(struct svc_cacherep),
124 0, 0, NULL); 128 0, 0, NULL);
@@ -129,10 +133,6 @@ int nfsd_reply_cache_init(void)
129 if (!cache_hash) 133 if (!cache_hash)
130 goto out_nomem; 134 goto out_nomem;
131 135
132 INIT_LIST_HEAD(&lru_head);
133 max_drc_entries = nfsd_cache_size_limit();
134 num_drc_entries = 0;
135
136 return 0; 136 return 0;
137out_nomem: 137out_nomem:
138 printk(KERN_ERR "nfsd: failed to allocate reply cache\n"); 138 printk(KERN_ERR "nfsd: failed to allocate reply cache\n");