diff options
author | 2024-08-20 11:25:39 -0400 | |
---|---|---|
committer | 2024-08-22 02:07:23 -0400 | |
commit | cecc328240609df17395dfd0ea03cc813d8be36d (patch) | |
tree | bd0a1168cac3778eb1b9dff5b3e340c0337a6f04 | |
parent | bcachefs: fix time_stats_to_text() (diff) | |
download | wireguard-linux-cecc328240609df17395dfd0ea03cc813d8be36d.tar.xz wireguard-linux-cecc328240609df17395dfd0ea03cc813d8be36d.zip |
bcachefs: fix missing bch2_err_str()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/fsck.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/bcachefs/fsck.c b/fs/bcachefs/fsck.c index 9138944c5ae6..267c2336b115 100644 --- a/fs/bcachefs/fsck.c +++ b/fs/bcachefs/fsck.c @@ -2469,8 +2469,7 @@ static int check_path(struct btree_trans *trans, pathbuf *p, struct bkey_s_c ino : bch2_inode_unpack(inode_k, &inode); if (ret) { /* Should have been caught in dirents pass */ - if (!bch2_err_matches(ret, BCH_ERR_transaction_restart)) - bch_err(c, "error looking up parent directory: %i", ret); + bch_err_msg(c, ret, "error looking up parent directory"); break; } |