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