]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/bset.h
Update bcachefs sources to b91a514413 bcachefs: Don't try to delete stripes when RO
[bcachefs-tools-debian] / libbcachefs / bset.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_BSET_H
3 #define _BCACHEFS_BSET_H
4
5 #include <linux/kernel.h>
6 #include <linux/types.h>
7
8 #include "bcachefs_format.h"
9 #include "bkey.h"
10 #include "bkey_methods.h"
11 #include "btree_types.h"
12 #include "util.h" /* for time_stats */
13 #include "vstructs.h"
14
15 /*
16  * BKEYS:
17  *
18  * A bkey contains a key, a size field, a variable number of pointers, and some
19  * ancillary flag bits.
20  *
21  * We use two different functions for validating bkeys, bkey_invalid and
22  * bkey_deleted().
23  *
24  * The one exception to the rule that ptr_invalid() filters out invalid keys is
25  * that it also filters out keys of size 0 - these are keys that have been
26  * completely overwritten. It'd be safe to delete these in memory while leaving
27  * them on disk, just unnecessary work - so we filter them out when resorting
28  * instead.
29  *
30  * We can't filter out stale keys when we're resorting, because garbage
31  * collection needs to find them to ensure bucket gens don't wrap around -
32  * unless we're rewriting the btree node those stale keys still exist on disk.
33  *
34  * We also implement functions here for removing some number of sectors from the
35  * front or the back of a bkey - this is mainly used for fixing overlapping
36  * extents, by removing the overlapping sectors from the older key.
37  *
38  * BSETS:
39  *
40  * A bset is an array of bkeys laid out contiguously in memory in sorted order,
41  * along with a header. A btree node is made up of a number of these, written at
42  * different times.
43  *
44  * There could be many of them on disk, but we never allow there to be more than
45  * 4 in memory - we lazily resort as needed.
46  *
47  * We implement code here for creating and maintaining auxiliary search trees
48  * (described below) for searching an individial bset, and on top of that we
49  * implement a btree iterator.
50  *
51  * BTREE ITERATOR:
52  *
53  * Most of the code in bcache doesn't care about an individual bset - it needs
54  * to search entire btree nodes and iterate over them in sorted order.
55  *
56  * The btree iterator code serves both functions; it iterates through the keys
57  * in a btree node in sorted order, starting from either keys after a specific
58  * point (if you pass it a search key) or the start of the btree node.
59  *
60  * AUXILIARY SEARCH TREES:
61  *
62  * Since keys are variable length, we can't use a binary search on a bset - we
63  * wouldn't be able to find the start of the next key. But binary searches are
64  * slow anyways, due to terrible cache behaviour; bcache originally used binary
65  * searches and that code topped out at under 50k lookups/second.
66  *
67  * So we need to construct some sort of lookup table. Since we only insert keys
68  * into the last (unwritten) set, most of the keys within a given btree node are
69  * usually in sets that are mostly constant. We use two different types of
70  * lookup tables to take advantage of this.
71  *
72  * Both lookup tables share in common that they don't index every key in the
73  * set; they index one key every BSET_CACHELINE bytes, and then a linear search
74  * is used for the rest.
75  *
76  * For sets that have been written to disk and are no longer being inserted
77  * into, we construct a binary search tree in an array - traversing a binary
78  * search tree in an array gives excellent locality of reference and is very
79  * fast, since both children of any node are adjacent to each other in memory
80  * (and their grandchildren, and great grandchildren...) - this means
81  * prefetching can be used to great effect.
82  *
83  * It's quite useful performance wise to keep these nodes small - not just
84  * because they're more likely to be in L2, but also because we can prefetch
85  * more nodes on a single cacheline and thus prefetch more iterations in advance
86  * when traversing this tree.
87  *
88  * Nodes in the auxiliary search tree must contain both a key to compare against
89  * (we don't want to fetch the key from the set, that would defeat the purpose),
90  * and a pointer to the key. We use a few tricks to compress both of these.
91  *
92  * To compress the pointer, we take advantage of the fact that one node in the
93  * search tree corresponds to precisely BSET_CACHELINE bytes in the set. We have
94  * a function (to_inorder()) that takes the index of a node in a binary tree and
95  * returns what its index would be in an inorder traversal, so we only have to
96  * store the low bits of the offset.
97  *
98  * The key is 84 bits (KEY_DEV + key->key, the offset on the device). To
99  * compress that,  we take advantage of the fact that when we're traversing the
100  * search tree at every iteration we know that both our search key and the key
101  * we're looking for lie within some range - bounded by our previous
102  * comparisons. (We special case the start of a search so that this is true even
103  * at the root of the tree).
104  *
105  * So we know the key we're looking for is between a and b, and a and b don't
106  * differ higher than bit 50, we don't need to check anything higher than bit
107  * 50.
108  *
109  * We don't usually need the rest of the bits, either; we only need enough bits
110  * to partition the key range we're currently checking.  Consider key n - the
111  * key our auxiliary search tree node corresponds to, and key p, the key
112  * immediately preceding n.  The lowest bit we need to store in the auxiliary
113  * search tree is the highest bit that differs between n and p.
114  *
115  * Note that this could be bit 0 - we might sometimes need all 80 bits to do the
116  * comparison. But we'd really like our nodes in the auxiliary search tree to be
117  * of fixed size.
118  *
119  * The solution is to make them fixed size, and when we're constructing a node
120  * check if p and n differed in the bits we needed them to. If they don't we
121  * flag that node, and when doing lookups we fallback to comparing against the
122  * real key. As long as this doesn't happen to often (and it seems to reliably
123  * happen a bit less than 1% of the time), we win - even on failures, that key
124  * is then more likely to be in cache than if we were doing binary searches all
125  * the way, since we're touching so much less memory.
126  *
127  * The keys in the auxiliary search tree are stored in (software) floating
128  * point, with an exponent and a mantissa. The exponent needs to be big enough
129  * to address all the bits in the original key, but the number of bits in the
130  * mantissa is somewhat arbitrary; more bits just gets us fewer failures.
131  *
132  * We need 7 bits for the exponent and 3 bits for the key's offset (since keys
133  * are 8 byte aligned); using 22 bits for the mantissa means a node is 4 bytes.
134  * We need one node per 128 bytes in the btree node, which means the auxiliary
135  * search trees take up 3% as much memory as the btree itself.
136  *
137  * Constructing these auxiliary search trees is moderately expensive, and we
138  * don't want to be constantly rebuilding the search tree for the last set
139  * whenever we insert another key into it. For the unwritten set, we use a much
140  * simpler lookup table - it's just a flat array, so index i in the lookup table
141  * corresponds to the i range of BSET_CACHELINE bytes in the set. Indexing
142  * within each byte range works the same as with the auxiliary search trees.
143  *
144  * These are much easier to keep up to date when we insert a key - we do it
145  * somewhat lazily; when we shift a key up we usually just increment the pointer
146  * to it, only when it would overflow do we go to the trouble of finding the
147  * first key in that range of bytes again.
148  */
149
150 extern bool bch2_expensive_debug_checks;
151
152 static inline bool btree_keys_expensive_checks(const struct btree *b)
153 {
154 #ifdef CONFIG_BCACHEFS_DEBUG
155         return bch2_expensive_debug_checks || *b->expensive_debug_checks;
156 #else
157         return false;
158 #endif
159 }
160
161 enum bset_aux_tree_type {
162         BSET_NO_AUX_TREE,
163         BSET_RO_AUX_TREE,
164         BSET_RW_AUX_TREE,
165 };
166
167 #define BSET_TREE_NR_TYPES      3
168
169 #define BSET_NO_AUX_TREE_VAL    (U16_MAX)
170 #define BSET_RW_AUX_TREE_VAL    (U16_MAX - 1)
171
172 static inline enum bset_aux_tree_type bset_aux_tree_type(const struct bset_tree *t)
173 {
174         switch (t->extra) {
175         case BSET_NO_AUX_TREE_VAL:
176                 EBUG_ON(t->size);
177                 return BSET_NO_AUX_TREE;
178         case BSET_RW_AUX_TREE_VAL:
179                 EBUG_ON(!t->size);
180                 return BSET_RW_AUX_TREE;
181         default:
182                 EBUG_ON(!t->size);
183                 return BSET_RO_AUX_TREE;
184         }
185 }
186
187 typedef void (*compiled_unpack_fn)(struct bkey *, const struct bkey_packed *);
188
189 static inline void
190 __bkey_unpack_key_format_checked(const struct btree *b,
191                                struct bkey *dst,
192                                const struct bkey_packed *src)
193 {
194 #ifdef HAVE_BCACHEFS_COMPILED_UNPACK
195         {
196                 compiled_unpack_fn unpack_fn = b->aux_data;
197                 unpack_fn(dst, src);
198
199                 if (btree_keys_expensive_checks(b)) {
200                         struct bkey dst2 = __bch2_bkey_unpack_key(&b->format, src);
201
202                         /*
203                          * hack around a harmless race when compacting whiteouts
204                          * for a write:
205                          */
206                         dst2.needs_whiteout = dst->needs_whiteout;
207
208                         BUG_ON(memcmp(dst, &dst2, sizeof(*dst)));
209                 }
210         }
211 #else
212         *dst = __bch2_bkey_unpack_key(&b->format, src);
213 #endif
214 }
215
216 static inline struct bkey
217 bkey_unpack_key_format_checked(const struct btree *b,
218                                const struct bkey_packed *src)
219 {
220         struct bkey dst;
221
222         __bkey_unpack_key_format_checked(b, &dst, src);
223         return dst;
224 }
225
226 static inline void __bkey_unpack_key(const struct btree *b,
227                                      struct bkey *dst,
228                                      const struct bkey_packed *src)
229 {
230         if (likely(bkey_packed(src)))
231                 __bkey_unpack_key_format_checked(b, dst, src);
232         else
233                 *dst = *packed_to_bkey_c(src);
234 }
235
236 /**
237  * bkey_unpack_key -- unpack just the key, not the value
238  */
239 static inline struct bkey bkey_unpack_key(const struct btree *b,
240                                           const struct bkey_packed *src)
241 {
242         return likely(bkey_packed(src))
243                 ? bkey_unpack_key_format_checked(b, src)
244                 : *packed_to_bkey_c(src);
245 }
246
247 static inline struct bpos
248 bkey_unpack_pos_format_checked(const struct btree *b,
249                                const struct bkey_packed *src)
250 {
251 #ifdef HAVE_BCACHEFS_COMPILED_UNPACK
252         return bkey_unpack_key_format_checked(b, src).p;
253 #else
254         return __bkey_unpack_pos(&b->format, src);
255 #endif
256 }
257
258 static inline struct bpos bkey_unpack_pos(const struct btree *b,
259                                           const struct bkey_packed *src)
260 {
261         return likely(bkey_packed(src))
262                 ? bkey_unpack_pos_format_checked(b, src)
263                 : packed_to_bkey_c(src)->p;
264 }
265
266 /* Disassembled bkeys */
267
268 static inline struct bkey_s_c bkey_disassemble(struct btree *b,
269                                                const struct bkey_packed *k,
270                                                struct bkey *u)
271 {
272         __bkey_unpack_key(b, u, k);
273
274         return (struct bkey_s_c) { u, bkeyp_val(&b->format, k), };
275 }
276
277 /* non const version: */
278 static inline struct bkey_s __bkey_disassemble(struct btree *b,
279                                                struct bkey_packed *k,
280                                                struct bkey *u)
281 {
282         __bkey_unpack_key(b, u, k);
283
284         return (struct bkey_s) { .k = u, .v = bkeyp_val(&b->format, k), };
285 }
286
287 #define for_each_bset(_b, _t)                                   \
288         for (_t = (_b)->set; _t < (_b)->set + (_b)->nsets; _t++)
289
290 static inline bool bset_has_ro_aux_tree(struct bset_tree *t)
291 {
292         return bset_aux_tree_type(t) == BSET_RO_AUX_TREE;
293 }
294
295 static inline bool bset_has_rw_aux_tree(struct bset_tree *t)
296 {
297         return bset_aux_tree_type(t) == BSET_RW_AUX_TREE;
298 }
299
300 static inline void bch2_bset_set_no_aux_tree(struct btree *b,
301                                             struct bset_tree *t)
302 {
303         BUG_ON(t < b->set);
304
305         for (; t < b->set + ARRAY_SIZE(b->set); t++) {
306                 t->size = 0;
307                 t->extra = BSET_NO_AUX_TREE_VAL;
308                 t->aux_data_offset = U16_MAX;
309         }
310 }
311
312 static inline void btree_node_set_format(struct btree *b,
313                                          struct bkey_format f)
314 {
315         int len;
316
317         b->format       = f;
318         b->nr_key_bits  = bkey_format_key_bits(&f);
319
320         len = bch2_compile_bkey_format(&b->format, b->aux_data);
321         BUG_ON(len < 0 || len > U8_MAX);
322
323         b->unpack_fn_len = len;
324
325         bch2_bset_set_no_aux_tree(b, b->set);
326 }
327
328 static inline struct bset *bset_next_set(struct btree *b,
329                                          unsigned block_bytes)
330 {
331         struct bset *i = btree_bset_last(b);
332
333         EBUG_ON(!is_power_of_2(block_bytes));
334
335         return ((void *) i) + round_up(vstruct_bytes(i), block_bytes);
336 }
337
338 void bch2_btree_keys_free(struct btree *);
339 int bch2_btree_keys_alloc(struct btree *, unsigned, gfp_t);
340 void bch2_btree_keys_init(struct btree *, bool *);
341
342 void bch2_bset_init_first(struct btree *, struct bset *);
343 void bch2_bset_init_next(struct bch_fs *, struct btree *,
344                          struct btree_node_entry *);
345 void bch2_bset_build_aux_tree(struct btree *, struct bset_tree *, bool);
346 void bch2_bset_fix_invalidated_key(struct btree *, struct bkey_packed *);
347
348 void bch2_bset_insert(struct btree *, struct btree_node_iter *,
349                      struct bkey_packed *, struct bkey_i *, unsigned);
350 void bch2_bset_delete(struct btree *, struct bkey_packed *, unsigned);
351
352 /* Bkey utility code */
353
354 /* packed or unpacked */
355 static inline int bkey_cmp_p_or_unp(const struct btree *b,
356                                     const struct bkey_packed *l,
357                                     const struct bkey_packed *r_packed,
358                                     struct bpos *r)
359 {
360         EBUG_ON(r_packed && !bkey_packed(r_packed));
361
362         if (unlikely(!bkey_packed(l)))
363                 return bkey_cmp(packed_to_bkey_c(l)->p, *r);
364
365         if (likely(r_packed))
366                 return __bch2_bkey_cmp_packed_format_checked(l, r_packed, b);
367
368         return __bch2_bkey_cmp_left_packed_format_checked(b, l, r);
369 }
370
371 struct bset_tree *bch2_bkey_to_bset(struct btree *, struct bkey_packed *);
372
373 struct bkey_packed *bch2_bkey_prev_filter(struct btree *, struct bset_tree *,
374                                           struct bkey_packed *, unsigned);
375
376 static inline struct bkey_packed *
377 bch2_bkey_prev_all(struct btree *b, struct bset_tree *t, struct bkey_packed *k)
378 {
379         return bch2_bkey_prev_filter(b, t, k, 0);
380 }
381
382 static inline struct bkey_packed *
383 bch2_bkey_prev(struct btree *b, struct bset_tree *t, struct bkey_packed *k)
384 {
385         return bch2_bkey_prev_filter(b, t, k, KEY_TYPE_discard + 1);
386 }
387
388 enum bch_extent_overlap {
389         BCH_EXTENT_OVERLAP_ALL          = 0,
390         BCH_EXTENT_OVERLAP_BACK         = 1,
391         BCH_EXTENT_OVERLAP_FRONT        = 2,
392         BCH_EXTENT_OVERLAP_MIDDLE       = 3,
393 };
394
395 /* Returns how k overlaps with m */
396 static inline enum bch_extent_overlap bch2_extent_overlap(const struct bkey *k,
397                                                           const struct bkey *m)
398 {
399         int cmp1 = bkey_cmp(k->p, m->p) < 0;
400         int cmp2 = bkey_cmp(bkey_start_pos(k),
401                             bkey_start_pos(m)) > 0;
402
403         return (cmp1 << 1) + cmp2;
404 }
405
406 /* Btree key iteration */
407
408 void bch2_btree_node_iter_push(struct btree_node_iter *, struct btree *,
409                               const struct bkey_packed *,
410                               const struct bkey_packed *);
411 void bch2_btree_node_iter_init(struct btree_node_iter *, struct btree *,
412                                struct bpos *);
413 void bch2_btree_node_iter_init_from_start(struct btree_node_iter *,
414                                           struct btree *);
415 struct bkey_packed *bch2_btree_node_iter_bset_pos(struct btree_node_iter *,
416                                                  struct btree *,
417                                                  struct bset_tree *);
418
419 void bch2_btree_node_iter_sort(struct btree_node_iter *, struct btree *);
420 void bch2_btree_node_iter_set_drop(struct btree_node_iter *,
421                                    struct btree_node_iter_set *);
422 void bch2_btree_node_iter_advance(struct btree_node_iter *, struct btree *);
423
424 #define btree_node_iter_for_each(_iter, _set)                           \
425         for (_set = (_iter)->data;                                      \
426              _set < (_iter)->data + ARRAY_SIZE((_iter)->data) &&        \
427              (_set)->k != (_set)->end;                                  \
428              _set++)
429
430 static inline bool __btree_node_iter_set_end(struct btree_node_iter *iter,
431                                              unsigned i)
432 {
433         return iter->data[i].k == iter->data[i].end;
434 }
435
436 static inline bool bch2_btree_node_iter_end(struct btree_node_iter *iter)
437 {
438         return __btree_node_iter_set_end(iter, 0);
439 }
440
441 /*
442  * When keys compare equal, deleted keys compare first:
443  *
444  * XXX: only need to compare pointers for keys that are both within a
445  * btree_node_iterator - we need to break ties for prev() to work correctly
446  */
447 static inline int bkey_iter_cmp(struct btree *b,
448                                 const struct bkey_packed *l,
449                                 const struct bkey_packed *r)
450 {
451         return bkey_cmp_packed(b, l, r)
452                 ?: (int) bkey_deleted(r) - (int) bkey_deleted(l)
453                 ?: cmp_int(l, r);
454 }
455
456 static inline int btree_node_iter_cmp(struct btree *b,
457                                       struct btree_node_iter_set l,
458                                       struct btree_node_iter_set r)
459 {
460         return bkey_iter_cmp(b,
461                         __btree_node_offset_to_key(b, l.k),
462                         __btree_node_offset_to_key(b, r.k));
463 }
464
465 /* These assume l (the search key) is not a deleted key: */
466 static inline int bkey_iter_pos_cmp(struct btree *b,
467                         struct bpos *l,
468                         const struct bkey_packed *r)
469 {
470         return -bkey_cmp_left_packed(b, r, l)
471                 ?: (int) bkey_deleted(r);
472 }
473
474 static inline int bkey_iter_cmp_p_or_unp(struct btree *b,
475                         struct bpos *l,
476                         const struct bkey_packed *l_packed,
477                         const struct bkey_packed *r)
478 {
479         return -bkey_cmp_p_or_unp(b, r, l_packed, l)
480                 ?: (int) bkey_deleted(r);
481 }
482
483 static inline struct bkey_packed *
484 __bch2_btree_node_iter_peek_all(struct btree_node_iter *iter,
485                                 struct btree *b)
486 {
487         return __btree_node_offset_to_key(b, iter->data->k);
488 }
489
490 static inline struct bkey_packed *
491 bch2_btree_node_iter_peek_filter(struct btree_node_iter *iter,
492                                  struct btree *b,
493                                  unsigned min_key_type)
494 {
495         while (!bch2_btree_node_iter_end(iter)) {
496                 struct bkey_packed *k = __bch2_btree_node_iter_peek_all(iter, b);
497
498                 if (k->type >= min_key_type)
499                         return k;
500
501                 bch2_btree_node_iter_advance(iter, b);
502         }
503
504         return NULL;
505 }
506
507 static inline struct bkey_packed *
508 bch2_btree_node_iter_peek_all(struct btree_node_iter *iter,
509                               struct btree *b)
510 {
511         return bch2_btree_node_iter_peek_filter(iter, b, 0);
512 }
513
514 static inline struct bkey_packed *
515 bch2_btree_node_iter_peek(struct btree_node_iter *iter, struct btree *b)
516 {
517         return bch2_btree_node_iter_peek_filter(iter, b, KEY_TYPE_discard + 1);
518 }
519
520 static inline struct bkey_packed *
521 bch2_btree_node_iter_next_all(struct btree_node_iter *iter, struct btree *b)
522 {
523         struct bkey_packed *ret = bch2_btree_node_iter_peek_all(iter, b);
524
525         if (ret)
526                 bch2_btree_node_iter_advance(iter, b);
527
528         return ret;
529 }
530
531 struct bkey_packed *bch2_btree_node_iter_prev_filter(struct btree_node_iter *,
532                                                      struct btree *, unsigned);
533
534 static inline struct bkey_packed *
535 bch2_btree_node_iter_prev_all(struct btree_node_iter *iter, struct btree *b)
536 {
537         return bch2_btree_node_iter_prev_filter(iter, b, 0);
538 }
539
540 static inline struct bkey_packed *
541 bch2_btree_node_iter_prev(struct btree_node_iter *iter, struct btree *b)
542 {
543         return bch2_btree_node_iter_prev_filter(iter, b, KEY_TYPE_discard + 1);
544 }
545
546 struct bkey_s_c bch2_btree_node_iter_peek_unpack(struct btree_node_iter *,
547                                                 struct btree *,
548                                                 struct bkey *);
549
550 #define for_each_btree_node_key_unpack(b, k, iter, unpacked)            \
551         for (bch2_btree_node_iter_init_from_start((iter), (b));         \
552              (k = bch2_btree_node_iter_peek_unpack((iter), (b), (unpacked))).k;\
553              bch2_btree_node_iter_advance(iter, b))
554
555 /* Accounting: */
556
557 static inline void btree_keys_account_key(struct btree_nr_keys *n,
558                                           unsigned bset,
559                                           struct bkey_packed *k,
560                                           int sign)
561 {
562         n->live_u64s            += k->u64s * sign;
563         n->bset_u64s[bset]      += k->u64s * sign;
564
565         if (bkey_packed(k))
566                 n->packed_keys  += sign;
567         else
568                 n->unpacked_keys += sign;
569 }
570
571 #define btree_keys_account_key_add(_nr, _bset_idx, _k)          \
572         btree_keys_account_key(_nr, _bset_idx, _k, 1)
573 #define btree_keys_account_key_drop(_nr, _bset_idx, _k) \
574         btree_keys_account_key(_nr, _bset_idx, _k, -1)
575
576 #define btree_account_key_add(_b, _k)                           \
577         btree_keys_account_key(&(_b)->nr,                       \
578                 bch2_bkey_to_bset(_b, _k) - (_b)->set, _k, 1)
579 #define btree_account_key_drop(_b, _k)                          \
580         btree_keys_account_key(&(_b)->nr,                       \
581                 bch2_bkey_to_bset(_b, _k) - (_b)->set, _k, -1)
582
583 struct bset_stats {
584         struct {
585                 size_t nr, bytes;
586         } sets[BSET_TREE_NR_TYPES];
587
588         size_t floats;
589         size_t failed_unpacked;
590         size_t failed_prev;
591         size_t failed_overflow;
592 };
593
594 void bch2_btree_keys_stats(struct btree *, struct bset_stats *);
595 void bch2_bfloat_to_text(struct printbuf *, struct btree *,
596                          struct bkey_packed *);
597
598 /* Debug stuff */
599
600 void bch2_dump_bset(struct btree *, struct bset *, unsigned);
601 void bch2_dump_btree_node(struct btree *);
602 void bch2_dump_btree_node_iter(struct btree *, struct btree_node_iter *);
603
604 #ifdef CONFIG_BCACHEFS_DEBUG
605
606 void __bch2_verify_btree_nr_keys(struct btree *);
607 void bch2_btree_node_iter_verify(struct btree_node_iter *, struct btree *);
608 void bch2_verify_insert_pos(struct btree *, struct bkey_packed *,
609                             struct bkey_packed *, unsigned);
610
611 #else
612
613 static inline void __bch2_verify_btree_nr_keys(struct btree *b) {}
614 static inline void bch2_btree_node_iter_verify(struct btree_node_iter *iter,
615                                               struct btree *b) {}
616 static inline void bch2_verify_insert_pos(struct btree *b,
617                                           struct bkey_packed *where,
618                                           struct bkey_packed *insert,
619                                           unsigned clobber_u64s) {}
620 #endif
621
622 static inline void bch2_verify_btree_nr_keys(struct btree *b)
623 {
624         if (btree_keys_expensive_checks(b))
625                 __bch2_verify_btree_nr_keys(b);
626 }
627
628 #endif /* _BCACHEFS_BSET_H */