bcachefs: Fix bch2_trigger_alloc assert
On testing on an old mangled filesystem, we missed a case.
Fixes: bd864bc2d9
("bcachefs: Fix bch2_trigger_alloc when upgrading from old versions")
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
49203a6b9d
commit
e150a7e89c
@ -829,7 +829,7 @@ int bch2_trigger_alloc(struct btree_trans *trans,
|
||||
if (likely(new.k->type == KEY_TYPE_alloc_v4)) {
|
||||
new_a = bkey_s_to_alloc_v4(new).v;
|
||||
} else {
|
||||
BUG_ON(!(flags & BTREE_TRIGGER_gc));
|
||||
BUG_ON(!(flags & (BTREE_TRIGGER_gc|BTREE_TRIGGER_check_repair)));
|
||||
|
||||
struct bkey_i_alloc_v4 *new_ka = bch2_alloc_to_v4_mut_inlined(trans, new.s_c);
|
||||
ret = PTR_ERR_OR_ZERO(new_ka);
|
||||
|
Loading…
Reference in New Issue
Block a user