Commit 51fe0332 authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Suppress transaction restart err message

This isn't a real error, and doesn't need to be printed.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 7635e1a6
......@@ -954,11 +954,11 @@ static int check_inode(struct btree_trans *trans,
iter->pos.snapshot),
POS(u.bi_inum, U64_MAX),
0, NULL);
if (ret) {
if (ret && !bch2_err_matches(ret, BCH_ERR_transaction_restart))
bch_err(c, "error in fsck: error truncating inode: %s",
bch2_err_str(ret));
if (ret)
return ret;
}
/*
* We truncated without our normal sector accounting hook, just
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment