mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
bcachefs: Kill other unreachable() uses
Per previous commit, bare unreachable() considered harmful, convert to BUG() Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
3764647b25
commit
439c172bc7
@ -1189,7 +1189,7 @@ struct bkey_packed *__bch2_bset_search(struct btree *b,
|
||||
case BSET_RO_AUX_TREE:
|
||||
return bset_search_tree(b, t, search, lossy_packed_search);
|
||||
default:
|
||||
unreachable();
|
||||
BUG();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -240,7 +240,7 @@ static inline void ec_stripe_new_put(struct bch_fs *c, struct ec_stripe_new *s,
|
||||
bch2_ec_do_stripe_creates(c);
|
||||
break;
|
||||
default:
|
||||
unreachable();
|
||||
BUG();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user