bcachefs: Work around a journal self-deadlock
bch2_journal_space_available -> bch2_journal_halt() self deadlocks on journal lock; work around this by dropping/retaking journal lock before we call bch2_fatal_error(). Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
This commit is contained in:
parent
30690c441a
commit
7fda0f08fa
@ -216,7 +216,14 @@ void bch2_journal_space_available(struct journal *j)
|
||||
bch_err(c, "journal stuck\n%s", buf.buf);
|
||||
printbuf_exit(&buf);
|
||||
|
||||
/*
|
||||
* Hack: bch2_fatal_error() calls bch2_journal_halt() which
|
||||
* takes journal lock:
|
||||
*/
|
||||
spin_unlock(&j->lock);
|
||||
bch2_fatal_error(c);
|
||||
spin_lock(&j->lock);
|
||||
|
||||
ret = cur_entry_journal_stuck;
|
||||
} else if (!j->space[journal_space_discarded].next_entry)
|
||||
ret = cur_entry_journal_full;
|
||||
|
Loading…
Reference in New Issue
Block a user