mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 13:34:30 +00:00
bcachefs: Drop bch2_journal_meta() call when going RW
Back when we relied on the journal sequence number blacklist machinery for consistency between btree and the journal, we needed to ensure a new journal entry was written before any btree writes were done. But, this had the side effect of consuming some space in the journal prior to doing journal replay - which could lead to a very wedged filesystem, since we don't yet have a way to grow the journal prior to going RW. Fortunately, the journal sequence number blacklist machinery isn't needed anymore, as btree node pointers now record the numer of sectors currently written to that node - that code should all be ripped out. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
This commit is contained in:
parent
2027875bd8
commit
f124345e2b
@ -412,13 +412,6 @@ static int __bch2_fs_read_write(struct bch_fs *c, bool early)
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
/*
|
|
||||||
* We need to write out a journal entry before we start doing btree
|
|
||||||
* updates, to ensure that on unclean shutdown new journal blacklist
|
|
||||||
* entries are created:
|
|
||||||
*/
|
|
||||||
bch2_journal_meta(&c->journal);
|
|
||||||
|
|
||||||
clear_bit(BCH_FS_ALLOC_CLEAN, &c->flags);
|
clear_bit(BCH_FS_ALLOC_CLEAN, &c->flags);
|
||||||
|
|
||||||
for_each_rw_member(ca, c, i)
|
for_each_rw_member(ca, c, i)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user