summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2022-05-28 16:21:01 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2022-05-30 18:17:24 -0400
commit1835cf6a1b0b225511a37cccf2bea97265ad7cfc (patch)
tree08a059db10a95a0bf6aef87f90d22031973c912f
parent19dab1a1b13fcbd843bf3b02098e5246738ad337 (diff)
bcachefs: Fix error checking in bch2_fs_alloc()
One of the init calls had a ; instead of a ?:, and errors after that got dropped - oops. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r--fs/bcachefs/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c
index bfc4fbe462de..82a9ac147b32 100644
--- a/fs/bcachefs/super.c
+++ b/fs/bcachefs/super.c
@@ -782,7 +782,7 @@ static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
bch2_fs_btree_iter_init(c) ?:
bch2_fs_btree_interior_update_init(c) ?:
- bch2_fs_buckets_waiting_for_journal_init(c);
+ bch2_fs_buckets_waiting_for_journal_init(c) ?:
bch2_fs_subvolumes_init(c) ?:
bch2_fs_io_init(c) ?:
bch2_fs_encryption_init(c) ?: