summaryrefslogtreecommitdiff
path: root/fs/bcachefs/recovery.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2022-02-10 19:26:55 -0500
committerKent Overstreet <kent.overstreet@gmail.com>2022-05-30 18:17:15 -0400
commit170e25d85d1469ed1442c202aa41ac071fcc8540 (patch)
tree6e13a0ced95b2f1bfc5d3e0787abd252543ac756 /fs/bcachefs/recovery.c
parente1a66da2f3666f9801b3c15ea3aa4ddfafafa8c9 (diff)
bcachefs: Kill main in-memory bucket array
All code using the in-memory bucket array, excluding GC, has now been converted to use the alloc btree directly - so we can finally delete it. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'fs/bcachefs/recovery.c')
-rw-r--r--fs/bcachefs/recovery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c
index e66e9506565a..fe2c5cb6d430 100644
--- a/fs/bcachefs/recovery.c
+++ b/fs/bcachefs/recovery.c
@@ -1138,7 +1138,7 @@ use_clean:
err = "error reading allocation information";
down_read(&c->gc_lock);
- ret = bch2_alloc_read(c, false, false);
+ ret = bch2_alloc_read(c);
up_read(&c->gc_lock);
if (ret)