Commit 029b85fe authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Fix bkey format calculation

For extents, we increase the number of bits of the size field to allow
extents to get bigger due to merging - but this code didn't check for
overflow.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent c8ef8c3e
......@@ -591,8 +591,10 @@ struct bkey_format bch2_bkey_format_done(struct bkey_format_state *s)
/* allow for extent merging: */
if (ret.bits_per_field[BKEY_FIELD_SIZE]) {
ret.bits_per_field[BKEY_FIELD_SIZE] += 4;
bits += 4;
unsigned b = min(4U, 32U - ret.bits_per_field[BKEY_FIELD_SIZE]);
ret.bits_per_field[BKEY_FIELD_SIZE] += b;
bits += b;
}
ret.key_u64s = DIV_ROUND_UP(bits, 64);
......
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