Commit 9eba7c8d authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: Reflink refcount fix

__bch2_trans_mark_reflink_p wasn't always correctly returning the number
of sectors processed - the new logic is a bit more straightforward
overall too.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
parent b282a74f
...@@ -1735,6 +1735,7 @@ static int __bch2_trans_mark_reflink_p(struct btree_trans *trans, ...@@ -1735,6 +1735,7 @@ static int __bch2_trans_mark_reflink_p(struct btree_trans *trans,
struct bkey_i *n; struct bkey_i *n;
__le64 *refcount; __le64 *refcount;
int add = !(flags & BTREE_TRIGGER_OVERWRITE) ? 1 : -1; int add = !(flags & BTREE_TRIGGER_OVERWRITE) ? 1 : -1;
int frags_referenced;
s64 ret; s64 ret;
ret = trans_get_key(trans, BTREE_ID_reflink, ret = trans_get_key(trans, BTREE_ID_reflink,
...@@ -1742,18 +1743,20 @@ static int __bch2_trans_mark_reflink_p(struct btree_trans *trans, ...@@ -1742,18 +1743,20 @@ static int __bch2_trans_mark_reflink_p(struct btree_trans *trans,
if (ret < 0) if (ret < 0)
return ret; return ret;
if (reflink_p_frag_references(p, 0, front_frag, k) && sectors = min_t(u64, sectors, k.k->p.offset - idx);
reflink_p_frag_references(p, back_frag, p.k->size, k)) {
frags_referenced =
reflink_p_frag_references(p, 0, front_frag, k) +
reflink_p_frag_references(p, back_frag, p.k->size, k);
if (frags_referenced == 2) {
BUG_ON(!(flags & BTREE_TRIGGER_OVERWRITE_SPLIT)); BUG_ON(!(flags & BTREE_TRIGGER_OVERWRITE_SPLIT));
add = -add; add = -add;
} else if (reflink_p_frag_references(p, 0, front_frag, k) || } else if (frags_referenced == 1) {
reflink_p_frag_references(p, back_frag, p.k->size, k)) {
BUG_ON(!(flags & BTREE_TRIGGER_OVERWRITE)); BUG_ON(!(flags & BTREE_TRIGGER_OVERWRITE));
goto out; goto out;
} }
sectors = min_t(u64, sectors, k.k->p.offset - idx);
n = bch2_trans_kmalloc(trans, bkey_bytes(k.k)); n = bch2_trans_kmalloc(trans, bkey_bytes(k.k));
ret = PTR_ERR_OR_ZERO(n); ret = PTR_ERR_OR_ZERO(n);
if (ret) if (ret)
...@@ -1808,14 +1811,13 @@ static int bch2_trans_mark_reflink_p(struct btree_trans *trans, ...@@ -1808,14 +1811,13 @@ static int bch2_trans_mark_reflink_p(struct btree_trans *trans,
ret = __bch2_trans_mark_reflink_p(trans, p, idx, sectors, ret = __bch2_trans_mark_reflink_p(trans, p, idx, sectors,
front_frag, back_frag, flags); front_frag, back_frag, flags);
if (ret < 0) if (ret < 0)
break; return ret;
idx += ret; idx += ret;
sectors = max_t(s64, 0LL, sectors - ret); sectors -= ret;
ret = 0;
} }
return ret; return 0;
} }
int bch2_trans_mark_key(struct btree_trans *trans, int bch2_trans_mark_key(struct btree_trans *trans,
......
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