diff options
author | 2024-09-07 16:31:47 -0400 | |
---|---|---|
committer | 2024-09-21 11:39:49 -0400 | |
commit | 2aee59eb212266992c018f1ae2cf9c7f6c4ed1a9 (patch) | |
tree | ec9302b7ec5933daee10b4701eebccef2151beaf /fs/bcachefs/io_read.c | |
parent | bcachefs: improve error message on too few devices for ec (diff) | |
download | wireguard-linux-2aee59eb212266992c018f1ae2cf9c7f6c4ed1a9.tar.xz wireguard-linux-2aee59eb212266992c018f1ae2cf9c7f6c4ed1a9.zip |
bcachefs: improve error messages in bch2_ec_read_extent()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to '')
-rw-r--r-- | fs/bcachefs/io_read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/io_read.c b/fs/bcachefs/io_read.c index b3fba16b157b..b2f50e74bb76 100644 --- a/fs/bcachefs/io_read.c +++ b/fs/bcachefs/io_read.c @@ -1092,7 +1092,7 @@ get_bio: trans->notrace_relock_fail = true; } else { /* Attempting reconstruct read: */ - if (bch2_ec_read_extent(trans, rbio)) { + if (bch2_ec_read_extent(trans, rbio, k)) { bch2_rbio_error(rbio, READ_RETRY_AVOID, BLK_STS_IOERR); goto out; } |