summaryrefslogtreecommitdiff
path: root/fs/bcachefs/super.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2021-03-28 17:05:23 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2021-03-28 17:05:23 -0400
commitcab470af7734f54e15d95f3fe96d2c803d1a3ad2 (patch)
treed203c1f00e4360e500cb59a366b61abc7b3d2339 /fs/bcachefs/super.c
parentef4ec8dc9af76d7646c00fd223aa9209d3c89124 (diff)
bcachefs: Switch to rhashtables for inode hash table WIPbcachefs-icache
Synchronization/inode lifetime/refcounting stuff has not been figured out yet
Diffstat (limited to 'fs/bcachefs/super.c')
-rw-r--r--fs/bcachefs/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c
index 4eaa4cee82c5..4edf6b505b45 100644
--- a/fs/bcachefs/super.c
+++ b/fs/bcachefs/super.c
@@ -473,6 +473,7 @@ static void __bch2_fs_free(struct bch_fs *c)
bch2_fs_quota_exit(c);
bch2_fs_fsio_exit(c);
+ bch2_fs_fs_exit(c);
bch2_fs_ec_exit(c);
bch2_fs_encryption_exit(c);
bch2_fs_io_exit(c);
@@ -792,6 +793,7 @@ static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
bch2_fs_encryption_init(c) ||
bch2_fs_compress_init(c) ||
bch2_fs_ec_init(c) ||
+ bch2_fs_fs_init(c) ||
bch2_fs_fsio_init(c))
goto err;