diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-03-06 02:34:59 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 17:09:56 -0400 |
commit | a345b0f393da49be9d1110ec9e43066191f0e466 (patch) | |
tree | 99812fedf4a08078ccfaaa054fc8bc16c0d23558 /fs/bcachefs/bset.h | |
parent | 26bab33b6974d42f5db6d2b7c2198e3af4993cf8 (diff) |
bcachefs: bch2_btree_node_to_text() const correctness
This is for the Rust interface - Rust cares more about const than C
does.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/bset.h')
-rw-r--r-- | fs/bcachefs/bset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/bset.h b/fs/bcachefs/bset.h index 2105e7836557..632c2b8c5460 100644 --- a/fs/bcachefs/bset.h +++ b/fs/bcachefs/bset.h @@ -213,7 +213,7 @@ static inline size_t btree_aux_data_u64s(const struct btree *b) _k != btree_bkey_last(_b, _t); \ _k = bkey_p_next(_k)) -static inline bool bset_has_ro_aux_tree(struct bset_tree *t) +static inline bool bset_has_ro_aux_tree(const struct bset_tree *t) { return bset_aux_tree_type(t) == BSET_RO_AUX_TREE; } @@ -504,7 +504,7 @@ struct bset_stats { size_t failed; }; -void bch2_btree_keys_stats(struct btree *, struct bset_stats *); +void bch2_btree_keys_stats(const struct btree *, struct bset_stats *); void bch2_bfloat_to_text(struct printbuf *, struct btree *, struct bkey_packed *); |