diff options
author | Alan Huang <mmpgouride@gmail.com> | 2025-03-15 15:39:42 +0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-03-24 09:50:34 -0400 |
commit | 76bc6e51cd915a72fea346e5fd2b6d26d5dd8021 (patch) | |
tree | 14b5a98beaba3fa8f7c7c914507c5c4973ab4df3 | |
parent | 35de2abc22274689e78a6582c6b4439db30673ef (diff) |
bcachefs: Increase blacklist range
Now there are 16 journal buffers, 8 is too small to be enough.
Signed-off-by: Alan Huang <mmpgouride@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/recovery.c b/fs/bcachefs/recovery.c index 71c786cdb192..a6e26733854d 100644 --- a/fs/bcachefs/recovery.c +++ b/fs/bcachefs/recovery.c @@ -899,7 +899,7 @@ use_clean: * journal sequence numbers: */ if (!c->sb.clean) - journal_seq += 8; + journal_seq += JOURNAL_BUF_NR * 4; if (blacklist_seq != journal_seq) { ret = bch2_journal_log_msg(c, "blacklisting entries %llu-%llu", |