summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-09-14 03:39:31 +0300
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-23 00:10:13 +0300
commit439c172bc763fc1ef33246a0fb23920c1e01ffa7 (patch)
tree6720793e6b9e16ca2a24cfb315d5a0ea1b0b36aa /fs
parent3764647b255aafb590d03066d5c1a344463e3637 (diff)
downloadlinux-439c172bc763fc1ef33246a0fb23920c1e01ffa7.tar.xz
bcachefs: Kill other unreachable() uses
Per previous commit, bare unreachable() considered harmful, convert to BUG() Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs')
-rw-r--r--fs/bcachefs/bset.c2
-rw-r--r--fs/bcachefs/ec.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/bset.c b/fs/bcachefs/bset.c
index cff7486ef446..bb73ba9017b0 100644
--- a/fs/bcachefs/bset.c
+++ b/fs/bcachefs/bset.c
@@ -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();
}
}
diff --git a/fs/bcachefs/ec.h b/fs/bcachefs/ec.h
index 885ae5d51655..966d165a3b66 100644
--- a/fs/bcachefs/ec.h
+++ b/fs/bcachefs/ec.h
@@ -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();
}
}