diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2020-11-05 11:57:58 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2020-12-07 11:50:46 -0500 |
commit | d983a32e7902da73c52e80b5dda4bc14d16415ae (patch) | |
tree | 4159d4364b90f14c8f4a1cf809acf25535a0a80e /fs/afs/super.c | |
parent | 492f2208a8a1788569f67142cab50cc9e13be5ee (diff) |
switch inodes to rhashtableinode_work
Diffstat (limited to 'fs/afs/super.c')
-rw-r--r-- | fs/afs/super.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/afs/super.c b/fs/afs/super.c index b552357b1d13..9821072e12d5 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c @@ -453,6 +453,9 @@ static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx) sb->s_op = &afs_super_ops; if (!as->dyn_root) sb->s_xattr = afs_xattr_handlers; + ret = super_setup_inode_table(sb, &afs_inode_table_params); + if (ret) + return ret; ret = super_setup_bdi(sb); if (ret) return ret; |