]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/btree_types.h
Update bcachefs sources to 9d28e4a535 bcachefs: bch2_journal_entry_to_text()
[bcachefs-tools-debian] / libbcachefs / btree_types.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_BTREE_TYPES_H
3 #define _BCACHEFS_BTREE_TYPES_H
4
5 #include <linux/list.h>
6 #include <linux/rhashtable.h>
7 #include <linux/six.h>
8
9 #include "bkey_methods.h"
10 #include "buckets_types.h"
11 #include "journal_types.h"
12
13 struct open_bucket;
14 struct btree_update;
15 struct btree_trans;
16
17 #define MAX_BSETS               3U
18
19 struct btree_nr_keys {
20
21         /*
22          * Amount of live metadata (i.e. size of node after a compaction) in
23          * units of u64s
24          */
25         u16                     live_u64s;
26         u16                     bset_u64s[MAX_BSETS];
27
28         /* live keys only: */
29         u16                     packed_keys;
30         u16                     unpacked_keys;
31 };
32
33 struct bset_tree {
34         /*
35          * We construct a binary tree in an array as if the array
36          * started at 1, so that things line up on the same cachelines
37          * better: see comments in bset.c at cacheline_to_bkey() for
38          * details
39          */
40
41         /* size of the binary tree and prev array */
42         u16                     size;
43
44         /* function of size - precalculated for to_inorder() */
45         u16                     extra;
46
47         u16                     data_offset;
48         u16                     aux_data_offset;
49         u16                     end_offset;
50 };
51
52 struct btree_write {
53         struct journal_entry_pin        journal;
54 };
55
56 struct btree_alloc {
57         struct open_buckets     ob;
58         __BKEY_PADDED(k, BKEY_BTREE_PTR_VAL_U64s_MAX);
59 };
60
61 struct btree_bkey_cached_common {
62         struct six_lock         lock;
63         u8                      level;
64         u8                      btree_id;
65 };
66
67 struct btree {
68         struct btree_bkey_cached_common c;
69
70         struct rhash_head       hash;
71         u64                     hash_val;
72
73         unsigned long           flags;
74         u16                     written;
75         u8                      nsets;
76         u8                      nr_key_bits;
77         u16                     version_ondisk;
78
79         struct bkey_format      format;
80
81         struct btree_node       *data;
82         void                    *aux_data;
83
84         /*
85          * Sets of sorted keys - the real btree node - plus a binary search tree
86          *
87          * set[0] is special; set[0]->tree, set[0]->prev and set[0]->data point
88          * to the memory we have allocated for this btree node. Additionally,
89          * set[0]->data points to the entire btree node as it exists on disk.
90          */
91         struct bset_tree        set[MAX_BSETS];
92
93         struct btree_nr_keys    nr;
94         u16                     sib_u64s[2];
95         u16                     whiteout_u64s;
96         u8                      byte_order;
97         u8                      unpack_fn_len;
98
99         struct btree_write      writes[2];
100
101         /* Key/pointer for this btree node */
102         __BKEY_PADDED(key, BKEY_BTREE_PTR_VAL_U64s_MAX);
103
104         /*
105          * XXX: add a delete sequence number, so when bch2_btree_node_relock()
106          * fails because the lock sequence number has changed - i.e. the
107          * contents were modified - we can still relock the node if it's still
108          * the one we want, without redoing the traversal
109          */
110
111         /*
112          * For asynchronous splits/interior node updates:
113          * When we do a split, we allocate new child nodes and update the parent
114          * node to point to them: we update the parent in memory immediately,
115          * but then we must wait until the children have been written out before
116          * the update to the parent can be written - this is a list of the
117          * btree_updates that are blocking this node from being
118          * written:
119          */
120         struct list_head        write_blocked;
121
122         /*
123          * Also for asynchronous splits/interior node updates:
124          * If a btree node isn't reachable yet, we don't want to kick off
125          * another write - because that write also won't yet be reachable and
126          * marking it as completed before it's reachable would be incorrect:
127          */
128         unsigned long           will_make_reachable;
129
130         struct open_buckets     ob;
131
132         /* lru list */
133         struct list_head        list;
134 };
135
136 struct btree_cache {
137         struct rhashtable       table;
138         bool                    table_init_done;
139         /*
140          * We never free a struct btree, except on shutdown - we just put it on
141          * the btree_cache_freed list and reuse it later. This simplifies the
142          * code, and it doesn't cost us much memory as the memory usage is
143          * dominated by buffers that hold the actual btree node data and those
144          * can be freed - and the number of struct btrees allocated is
145          * effectively bounded.
146          *
147          * btree_cache_freeable effectively is a small cache - we use it because
148          * high order page allocations can be rather expensive, and it's quite
149          * common to delete and allocate btree nodes in quick succession. It
150          * should never grow past ~2-3 nodes in practice.
151          */
152         struct mutex            lock;
153         struct list_head        live;
154         struct list_head        freeable;
155         struct list_head        freed;
156
157         /* Number of elements in live + freeable lists */
158         unsigned                used;
159         unsigned                reserve;
160         atomic_t                dirty;
161         struct shrinker         shrink;
162
163         /*
164          * If we need to allocate memory for a new btree node and that
165          * allocation fails, we can cannibalize another node in the btree cache
166          * to satisfy the allocation - lock to guarantee only one thread does
167          * this at a time:
168          */
169         struct task_struct      *alloc_lock;
170         struct closure_waitlist alloc_wait;
171 };
172
173 struct btree_node_iter {
174         struct btree_node_iter_set {
175                 u16     k, end;
176         } data[MAX_BSETS];
177 };
178
179 /*
180  * Iterate over all possible positions, synthesizing deleted keys for holes:
181  */
182 #define BTREE_ITER_SLOTS                (1 << 0)
183 /*
184  * Indicates that intent locks should be taken on leaf nodes, because we expect
185  * to be doing updates:
186  */
187 #define BTREE_ITER_INTENT               (1 << 1)
188 /*
189  * Causes the btree iterator code to prefetch additional btree nodes from disk:
190  */
191 #define BTREE_ITER_PREFETCH             (1 << 2)
192 /*
193  * Indicates that this iterator should not be reused until transaction commit,
194  * either because a pending update references it or because the update depends
195  * on that particular key being locked (e.g. by the str_hash code, for hash
196  * table consistency)
197  */
198 #define BTREE_ITER_KEEP_UNTIL_COMMIT    (1 << 3)
199 /*
200  * Used in bch2_btree_iter_traverse(), to indicate whether we're searching for
201  * @pos or the first key strictly greater than @pos
202  */
203 #define BTREE_ITER_IS_EXTENTS           (1 << 4)
204 #define BTREE_ITER_NOT_EXTENTS          (1 << 5)
205 #define BTREE_ITER_ERROR                (1 << 6)
206 #define BTREE_ITER_CACHED               (1 << 7)
207 #define BTREE_ITER_CACHED_NOFILL        (1 << 8)
208 #define BTREE_ITER_CACHED_NOCREATE      (1 << 9)
209 #define BTREE_ITER_WITH_UPDATES         (1 << 10)
210 #define __BTREE_ITER_ALL_SNAPSHOTS      (1 << 11)
211 #define BTREE_ITER_ALL_SNAPSHOTS        (1 << 12)
212 #define BTREE_ITER_FILTER_SNAPSHOTS     (1 << 13)
213 #define BTREE_ITER_NOPRESERVE           (1 << 14)
214
215 enum btree_path_uptodate {
216         BTREE_ITER_UPTODATE             = 0,
217         BTREE_ITER_NEED_RELOCK          = 1,
218         BTREE_ITER_NEED_TRAVERSE        = 2,
219 };
220
221 #define BTREE_ITER_NO_NODE_GET_LOCKS    ((struct btree *) 1)
222 #define BTREE_ITER_NO_NODE_DROP         ((struct btree *) 2)
223 #define BTREE_ITER_NO_NODE_LOCK_ROOT    ((struct btree *) 3)
224 #define BTREE_ITER_NO_NODE_UP           ((struct btree *) 4)
225 #define BTREE_ITER_NO_NODE_DOWN         ((struct btree *) 5)
226 #define BTREE_ITER_NO_NODE_INIT         ((struct btree *) 6)
227 #define BTREE_ITER_NO_NODE_ERROR        ((struct btree *) 7)
228 #define BTREE_ITER_NO_NODE_CACHED       ((struct btree *) 8)
229
230 struct btree_path {
231         u8                      idx;
232         u8                      sorted_idx;
233         u8                      ref;
234         u8                      intent_ref;
235
236         /* btree_iter_copy starts here: */
237         struct bpos             pos;
238
239         enum btree_id           btree_id:4;
240         bool                    cached:1;
241         bool                    preserve:1;
242         enum btree_path_uptodate uptodate:2;
243         /*
244          * When true, failing to relock this path will cause the transaction to
245          * restart:
246          */
247         bool                    should_be_locked:1;
248         unsigned                level:3,
249                                 locks_want:4,
250                                 nodes_locked:4,
251                                 nodes_intent_locked:4;
252
253         struct btree_path_level {
254                 struct btree    *b;
255                 struct btree_node_iter iter;
256                 u32             lock_seq;
257         }                       l[BTREE_MAX_DEPTH];
258 #ifdef CONFIG_BCACHEFS_DEBUG
259         unsigned long           ip_allocated;
260 #endif
261 };
262
263 static inline struct btree_path_level *path_l(struct btree_path *path)
264 {
265         return path->l + path->level;
266 }
267
268 /*
269  * @pos                 - iterator's current position
270  * @level               - current btree depth
271  * @locks_want          - btree level below which we start taking intent locks
272  * @nodes_locked        - bitmask indicating which nodes in @nodes are locked
273  * @nodes_intent_locked - bitmask indicating which locks are intent locks
274  */
275 struct btree_iter {
276         struct btree_trans      *trans;
277         struct btree_path       *path;
278
279         enum btree_id           btree_id:4;
280         unsigned                min_depth:4;
281
282         /* btree_iter_copy starts here: */
283         u16                     flags;
284
285         /* When we're filtering by snapshot, the snapshot ID we're looking for: */
286         unsigned                snapshot;
287
288         struct bpos             pos;
289         struct bpos             pos_after_commit;
290         /*
291          * Current unpacked key - so that bch2_btree_iter_next()/
292          * bch2_btree_iter_next_slot() can correctly advance pos.
293          */
294         struct bkey             k;
295 #ifdef CONFIG_BCACHEFS_DEBUG
296         unsigned long           ip_allocated;
297 #endif
298 };
299
300 struct btree_key_cache {
301         struct mutex            lock;
302         struct rhashtable       table;
303         bool                    table_init_done;
304         struct list_head        freed;
305         struct shrinker         shrink;
306         unsigned                shrink_iter;
307
308         size_t                  nr_freed;
309         atomic_long_t           nr_keys;
310         atomic_long_t           nr_dirty;
311 };
312
313 struct bkey_cached_key {
314         u32                     btree_id;
315         struct bpos             pos;
316 } __attribute__((packed, aligned(4)));
317
318 #define BKEY_CACHED_ACCESSED            0
319 #define BKEY_CACHED_DIRTY               1
320
321 struct bkey_cached {
322         struct btree_bkey_cached_common c;
323
324         unsigned long           flags;
325         u8                      u64s;
326         bool                    valid;
327         u32                     btree_trans_barrier_seq;
328         struct bkey_cached_key  key;
329
330         struct rhash_head       hash;
331         struct list_head        list;
332
333         struct journal_preres   res;
334         struct journal_entry_pin journal;
335
336         struct bkey_i           *k;
337 };
338
339 struct btree_insert_entry {
340         unsigned                flags;
341         u8                      bkey_type;
342         enum btree_id           btree_id:8;
343         u8                      level;
344         bool                    cached:1;
345         bool                    insert_trigger_run:1;
346         bool                    overwrite_trigger_run:1;
347         struct bkey_i           *k;
348         struct btree_path       *path;
349         unsigned long           ip_allocated;
350 };
351
352 #ifndef CONFIG_LOCKDEP
353 #define BTREE_ITER_MAX          64
354 #else
355 #define BTREE_ITER_MAX          32
356 #endif
357
358 struct btree_trans_commit_hook;
359 typedef int (btree_trans_commit_hook_fn)(struct btree_trans *, struct btree_trans_commit_hook *);
360
361 struct btree_trans_commit_hook {
362         btree_trans_commit_hook_fn      *fn;
363         struct btree_trans_commit_hook  *next;
364 };
365
366 #define BTREE_TRANS_MEM_MAX     (1U << 14)
367
368 struct btree_trans {
369         struct bch_fs           *c;
370         struct list_head        list;
371         struct btree            *locking;
372         unsigned                locking_path_idx;
373         struct bpos             locking_pos;
374         u8                      locking_btree_id;
375         u8                      locking_level;
376         pid_t                   pid;
377         unsigned long           ip;
378         int                     srcu_idx;
379
380         u8                      nr_sorted;
381         u8                      nr_updates;
382         bool                    used_mempool:1;
383         bool                    in_traverse_all:1;
384         bool                    restarted:1;
385         bool                    journal_transaction_names:1;
386         /*
387          * For when bch2_trans_update notices we'll be splitting a compressed
388          * extent:
389          */
390         unsigned                extra_journal_res;
391
392         u64                     paths_allocated;
393
394         unsigned                mem_top;
395         unsigned                mem_bytes;
396         void                    *mem;
397
398         u8                      sorted[BTREE_ITER_MAX];
399         struct btree_path       *paths;
400         struct btree_insert_entry *updates;
401
402         /* update path: */
403         struct btree_trans_commit_hook *hooks;
404         struct jset_entry       *extra_journal_entries;
405         unsigned                extra_journal_entry_u64s;
406         struct journal_entry_pin *journal_pin;
407
408         struct journal_res      journal_res;
409         struct journal_preres   journal_preres;
410         u64                     *journal_seq;
411         struct disk_reservation *disk_res;
412         unsigned                flags;
413         unsigned                journal_u64s;
414         unsigned                journal_preres_u64s;
415         struct replicas_delta_list *fs_usage_deltas;
416 };
417
418 #define BTREE_FLAG(flag)                                                \
419 static inline bool btree_node_ ## flag(struct btree *b)                 \
420 {       return test_bit(BTREE_NODE_ ## flag, &b->flags); }              \
421                                                                         \
422 static inline void set_btree_node_ ## flag(struct btree *b)             \
423 {       set_bit(BTREE_NODE_ ## flag, &b->flags); }                      \
424                                                                         \
425 static inline void clear_btree_node_ ## flag(struct btree *b)           \
426 {       clear_bit(BTREE_NODE_ ## flag, &b->flags); }
427
428 enum btree_flags {
429         BTREE_NODE_read_in_flight,
430         BTREE_NODE_read_error,
431         BTREE_NODE_dirty,
432         BTREE_NODE_need_write,
433         BTREE_NODE_noevict,
434         BTREE_NODE_write_idx,
435         BTREE_NODE_accessed,
436         BTREE_NODE_write_in_flight,
437         BTREE_NODE_write_in_flight_inner,
438         BTREE_NODE_just_written,
439         BTREE_NODE_dying,
440         BTREE_NODE_fake,
441         BTREE_NODE_need_rewrite,
442         BTREE_NODE_never_write,
443 };
444
445 BTREE_FLAG(read_in_flight);
446 BTREE_FLAG(read_error);
447 BTREE_FLAG(need_write);
448 BTREE_FLAG(noevict);
449 BTREE_FLAG(write_idx);
450 BTREE_FLAG(accessed);
451 BTREE_FLAG(write_in_flight);
452 BTREE_FLAG(write_in_flight_inner);
453 BTREE_FLAG(just_written);
454 BTREE_FLAG(dying);
455 BTREE_FLAG(fake);
456 BTREE_FLAG(need_rewrite);
457 BTREE_FLAG(never_write);
458
459 static inline struct btree_write *btree_current_write(struct btree *b)
460 {
461         return b->writes + btree_node_write_idx(b);
462 }
463
464 static inline struct btree_write *btree_prev_write(struct btree *b)
465 {
466         return b->writes + (btree_node_write_idx(b) ^ 1);
467 }
468
469 static inline struct bset_tree *bset_tree_last(struct btree *b)
470 {
471         EBUG_ON(!b->nsets);
472         return b->set + b->nsets - 1;
473 }
474
475 static inline void *
476 __btree_node_offset_to_ptr(const struct btree *b, u16 offset)
477 {
478         return (void *) ((u64 *) b->data + 1 + offset);
479 }
480
481 static inline u16
482 __btree_node_ptr_to_offset(const struct btree *b, const void *p)
483 {
484         u16 ret = (u64 *) p - 1 - (u64 *) b->data;
485
486         EBUG_ON(__btree_node_offset_to_ptr(b, ret) != p);
487         return ret;
488 }
489
490 static inline struct bset *bset(const struct btree *b,
491                                 const struct bset_tree *t)
492 {
493         return __btree_node_offset_to_ptr(b, t->data_offset);
494 }
495
496 static inline void set_btree_bset_end(struct btree *b, struct bset_tree *t)
497 {
498         t->end_offset =
499                 __btree_node_ptr_to_offset(b, vstruct_last(bset(b, t)));
500 }
501
502 static inline void set_btree_bset(struct btree *b, struct bset_tree *t,
503                                   const struct bset *i)
504 {
505         t->data_offset = __btree_node_ptr_to_offset(b, i);
506         set_btree_bset_end(b, t);
507 }
508
509 static inline struct bset *btree_bset_first(struct btree *b)
510 {
511         return bset(b, b->set);
512 }
513
514 static inline struct bset *btree_bset_last(struct btree *b)
515 {
516         return bset(b, bset_tree_last(b));
517 }
518
519 static inline u16
520 __btree_node_key_to_offset(const struct btree *b, const struct bkey_packed *k)
521 {
522         return __btree_node_ptr_to_offset(b, k);
523 }
524
525 static inline struct bkey_packed *
526 __btree_node_offset_to_key(const struct btree *b, u16 k)
527 {
528         return __btree_node_offset_to_ptr(b, k);
529 }
530
531 static inline unsigned btree_bkey_first_offset(const struct bset_tree *t)
532 {
533         return t->data_offset + offsetof(struct bset, _data) / sizeof(u64);
534 }
535
536 #define btree_bkey_first(_b, _t)                                        \
537 ({                                                                      \
538         EBUG_ON(bset(_b, _t)->start !=                                  \
539                 __btree_node_offset_to_key(_b, btree_bkey_first_offset(_t)));\
540                                                                         \
541         bset(_b, _t)->start;                                            \
542 })
543
544 #define btree_bkey_last(_b, _t)                                         \
545 ({                                                                      \
546         EBUG_ON(__btree_node_offset_to_key(_b, (_t)->end_offset) !=     \
547                 vstruct_last(bset(_b, _t)));                            \
548                                                                         \
549         __btree_node_offset_to_key(_b, (_t)->end_offset);               \
550 })
551
552 static inline unsigned bset_u64s(struct bset_tree *t)
553 {
554         return t->end_offset - t->data_offset -
555                 sizeof(struct bset) / sizeof(u64);
556 }
557
558 static inline unsigned bset_dead_u64s(struct btree *b, struct bset_tree *t)
559 {
560         return bset_u64s(t) - b->nr.bset_u64s[t - b->set];
561 }
562
563 static inline unsigned bset_byte_offset(struct btree *b, void *i)
564 {
565         return i - (void *) b->data;
566 }
567
568 enum btree_node_type {
569 #define x(kwd, val) BKEY_TYPE_##kwd = val,
570         BCH_BTREE_IDS()
571 #undef x
572         BKEY_TYPE_btree,
573 };
574
575 /* Type of a key in btree @id at level @level: */
576 static inline enum btree_node_type __btree_node_type(unsigned level, enum btree_id id)
577 {
578         return level ? BKEY_TYPE_btree : (enum btree_node_type) id;
579 }
580
581 /* Type of keys @b contains: */
582 static inline enum btree_node_type btree_node_type(struct btree *b)
583 {
584         return __btree_node_type(b->c.level, b->c.btree_id);
585 }
586
587 static inline bool btree_node_type_is_extents(enum btree_node_type type)
588 {
589         switch (type) {
590         case BKEY_TYPE_extents:
591         case BKEY_TYPE_reflink:
592                 return true;
593         default:
594                 return false;
595         }
596 }
597
598 static inline bool btree_node_is_extents(struct btree *b)
599 {
600         return btree_node_type_is_extents(btree_node_type(b));
601 }
602
603 #define BTREE_NODE_TYPE_HAS_TRANS_TRIGGERS              \
604         ((1U << BKEY_TYPE_extents)|                     \
605          (1U << BKEY_TYPE_inodes)|                      \
606          (1U << BKEY_TYPE_stripes)|                     \
607          (1U << BKEY_TYPE_reflink)|                     \
608          (1U << BKEY_TYPE_btree))
609
610 #define BTREE_NODE_TYPE_HAS_MEM_TRIGGERS                \
611         ((1U << BKEY_TYPE_alloc)|                       \
612          (1U << BKEY_TYPE_inodes)|                      \
613          (1U << BKEY_TYPE_stripes)|                     \
614          (1U << BKEY_TYPE_snapshots))
615
616 #define BTREE_NODE_TYPE_HAS_TRIGGERS                    \
617         (BTREE_NODE_TYPE_HAS_TRANS_TRIGGERS|            \
618          BTREE_NODE_TYPE_HAS_MEM_TRIGGERS)
619
620 #define BTREE_ID_HAS_SNAPSHOTS                          \
621         ((1U << BTREE_ID_extents)|                      \
622          (1U << BTREE_ID_inodes)|                       \
623          (1U << BTREE_ID_dirents)|                      \
624          (1U << BTREE_ID_xattrs))
625
626 #define BTREE_ID_HAS_PTRS                               \
627         ((1U << BTREE_ID_extents)|                      \
628          (1U << BTREE_ID_reflink))
629
630 static inline bool btree_type_has_snapshots(enum btree_id id)
631 {
632         return (1 << id) & BTREE_ID_HAS_SNAPSHOTS;
633 }
634
635 enum btree_update_flags {
636         __BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE,
637
638         __BTREE_TRIGGER_NORUN,          /* Don't run triggers at all */
639
640         __BTREE_TRIGGER_INSERT,
641         __BTREE_TRIGGER_OVERWRITE,
642
643         __BTREE_TRIGGER_GC,
644         __BTREE_TRIGGER_BUCKET_INVALIDATE,
645         __BTREE_TRIGGER_NOATOMIC,
646 };
647
648 #define BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE (1U << __BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE)
649
650 #define BTREE_TRIGGER_NORUN             (1U << __BTREE_TRIGGER_NORUN)
651
652 #define BTREE_TRIGGER_INSERT            (1U << __BTREE_TRIGGER_INSERT)
653 #define BTREE_TRIGGER_OVERWRITE         (1U << __BTREE_TRIGGER_OVERWRITE)
654
655 #define BTREE_TRIGGER_GC                (1U << __BTREE_TRIGGER_GC)
656 #define BTREE_TRIGGER_BUCKET_INVALIDATE (1U << __BTREE_TRIGGER_BUCKET_INVALIDATE)
657 #define BTREE_TRIGGER_NOATOMIC          (1U << __BTREE_TRIGGER_NOATOMIC)
658
659 #define BTREE_TRIGGER_WANTS_OLD_AND_NEW         \
660         ((1U << KEY_TYPE_alloc)|                \
661          (1U << KEY_TYPE_alloc_v2)|             \
662          (1U << KEY_TYPE_alloc_v3)|             \
663          (1U << KEY_TYPE_stripe)|               \
664          (1U << KEY_TYPE_inode)|                \
665          (1U << KEY_TYPE_inode_v2)|             \
666          (1U << KEY_TYPE_snapshot))
667
668 static inline bool btree_node_type_needs_gc(enum btree_node_type type)
669 {
670         return BTREE_NODE_TYPE_HAS_TRIGGERS & (1U << type);
671 }
672
673 struct btree_root {
674         struct btree            *b;
675
676         /* On disk root - see async splits: */
677         __BKEY_PADDED(key, BKEY_BTREE_PTR_VAL_U64s_MAX);
678         u8                      level;
679         u8                      alive;
680         s8                      error;
681 };
682
683 enum btree_insert_ret {
684         BTREE_INSERT_OK,
685         /* leaf node needs to be split */
686         BTREE_INSERT_BTREE_NODE_FULL,
687         BTREE_INSERT_NEED_MARK_REPLICAS,
688         BTREE_INSERT_NEED_JOURNAL_RES,
689         BTREE_INSERT_NEED_JOURNAL_RECLAIM,
690 };
691
692 enum btree_gc_coalesce_fail_reason {
693         BTREE_GC_COALESCE_FAIL_RESERVE_GET,
694         BTREE_GC_COALESCE_FAIL_KEYLIST_REALLOC,
695         BTREE_GC_COALESCE_FAIL_FORMAT_FITS,
696 };
697
698 enum btree_node_sibling {
699         btree_prev_sib,
700         btree_next_sib,
701 };
702
703 #endif /* _BCACHEFS_BTREE_TYPES_H */