diff options
author | 2025-04-28 23:33:06 -0400 | |
---|---|---|
committer | 2025-04-30 11:49:28 -0400 | |
commit | 2feaa92c7c0123013a2a3e3d02ff8a5f5a794e96 (patch) | |
tree | 7dde6148da1b5a5b19292ba9fc81204acc3d4bfe | |
parent | bcachefs: Topology error after insert is now an ERO (diff) | |
download | wireguard-linux-2feaa92c7c0123013a2a3e3d02ff8a5f5a794e96.tar.xz wireguard-linux-2feaa92c7c0123013a2a3e3d02ff8a5f5a794e96.zip |
bcachefs: improve missing journal write device error message
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/journal_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/journal_io.c b/fs/bcachefs/journal_io.c index 2a54ac79189b..63cdf885c9e2 100644 --- a/fs/bcachefs/journal_io.c +++ b/fs/bcachefs/journal_io.c @@ -1782,7 +1782,7 @@ static CLOSURE_CALLBACK(journal_write_submit) struct bch_dev *ca = bch2_dev_get_ioref(c, ptr->dev, WRITE); if (!ca) { /* XXX: fix this */ - bch_err(c, "missing device for journal write\n"); + bch_err(c, "missing device %u for journal write", ptr->dev); continue; } |