aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/super.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/super.c')
-rw-r--r--fs/nfs/super.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c
index e8a9bee74d9d..06c321beacfe 100644
--- a/fs/nfs/super.c
+++ b/fs/nfs/super.c
@@ -221,6 +221,8 @@ module_param_call(idmap_cache_timeout, param_set_idmap_timeout, param_get_int,
221 &nfs_idmap_cache_timeout, 0644); 221 &nfs_idmap_cache_timeout, 0644);
222#endif 222#endif
223 223
224static struct shrinker *acl_shrinker;
225
224/* 226/*
225 * Register the NFS filesystems 227 * Register the NFS filesystems
226 */ 228 */
@@ -240,6 +242,7 @@ int __init register_nfs_fs(void)
240 if (ret < 0) 242 if (ret < 0)
241 goto error_2; 243 goto error_2;
242#endif 244#endif
245 acl_shrinker = set_shrinker(DEFAULT_SEEKS, nfs_access_cache_shrinker);
243 return 0; 246 return 0;
244 247
245#ifdef CONFIG_NFS_V4 248#ifdef CONFIG_NFS_V4
@@ -257,6 +260,8 @@ error_0:
257 */ 260 */
258void __exit unregister_nfs_fs(void) 261void __exit unregister_nfs_fs(void)
259{ 262{
263 if (acl_shrinker != NULL)
264 remove_shrinker(acl_shrinker);
260#ifdef CONFIG_NFS_V4 265#ifdef CONFIG_NFS_V4
261 unregister_filesystem(&nfs4_fs_type); 266 unregister_filesystem(&nfs4_fs_type);
262 nfs_unregister_sysctl(); 267 nfs_unregister_sysctl();