summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2022-06-06 23:04:33 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2022-06-06 23:53:46 -0400
commit1495936db7d57b0ebcf30304d4f3a8703b6e2904 (patch)
treead27986d08eca46b711723f765db8c24f91a0aba
parent600598598b7c6d2069a374a14ad4925f39a30faa (diff)
bcachefs: Fix for cmd_list_journal
cmd_list_journal wasn't correctly listing the most recent journal entries as blacklisted - because in the recovery path when just reading the journal, we were failing to add those to the blacklist table. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r--fs/bcachefs/recovery.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c
index 04afe2453b0b..d08ceb160ae0 100644
--- a/fs/bcachefs/recovery.c
+++ b/fs/bcachefs/recovery.c
@@ -1169,9 +1169,6 @@ use_clean:
blacklist_seq = journal_seq = le64_to_cpu(clean->journal_seq) + 1;
}
- if (c->opts.read_journal_only)
- goto out;
-
if (c->opts.reconstruct_alloc) {
c->sb.compat &= ~(1ULL << BCH_COMPAT_alloc_info);
drop_alloc_keys(&c->journal_keys);
@@ -1202,6 +1199,13 @@ use_clean:
}
}
+ /*
+ * note: cmd_list_journal needs the blacklist table fully up to date so
+ * it can asterisk ignored journal entries:
+ */
+ if (c->opts.read_journal_only)
+ goto out;
+
ret = bch2_fs_journal_start(&c->journal, journal_seq);
if (ret)
goto err;