]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/bkey_methods.h
Update bcachefs sources to 9017d85854 bcachefs: btree_ptr_v2
[bcachefs-tools-debian] / libbcachefs / bkey_methods.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_BKEY_METHODS_H
3 #define _BCACHEFS_BKEY_METHODS_H
4
5 #include "bkey.h"
6
7 struct bch_fs;
8 struct btree;
9 struct bkey;
10 enum btree_node_type;
11
12 extern const char * const bch2_bkey_types[];
13
14 enum merge_result {
15         BCH_MERGE_NOMERGE,
16
17         /*
18          * The keys were mergeable, but would have overflowed size - so instead
19          * l was changed to the maximum size, and both keys were modified:
20          */
21         BCH_MERGE_PARTIAL,
22         BCH_MERGE_MERGE,
23 };
24
25 struct bkey_ops {
26         /* Returns reason for being invalid if invalid, else NULL: */
27         const char *    (*key_invalid)(const struct bch_fs *,
28                                        struct bkey_s_c);
29         void            (*key_debugcheck)(struct bch_fs *, struct bkey_s_c);
30         void            (*val_to_text)(struct printbuf *, struct bch_fs *,
31                                        struct bkey_s_c);
32         void            (*swab)(struct bkey_s);
33         bool            (*key_normalize)(struct bch_fs *, struct bkey_s);
34         enum merge_result (*key_merge)(struct bch_fs *,
35                                        struct bkey_s, struct bkey_s);
36 };
37
38 const char *bch2_bkey_val_invalid(struct bch_fs *, struct bkey_s_c);
39 const char *__bch2_bkey_invalid(struct bch_fs *, struct bkey_s_c,
40                                 enum btree_node_type);
41 const char *bch2_bkey_invalid(struct bch_fs *, struct bkey_s_c,
42                               enum btree_node_type);
43 const char *bch2_bkey_in_btree_node(struct btree *, struct bkey_s_c);
44
45 void bch2_bkey_debugcheck(struct bch_fs *, struct btree *, struct bkey_s_c);
46
47 void bch2_bpos_to_text(struct printbuf *, struct bpos);
48 void bch2_bkey_to_text(struct printbuf *, const struct bkey *);
49 void bch2_val_to_text(struct printbuf *, struct bch_fs *,
50                       struct bkey_s_c);
51 void bch2_bkey_val_to_text(struct printbuf *, struct bch_fs *,
52                            struct bkey_s_c);
53
54 void bch2_bkey_swab_val(struct bkey_s);
55
56 bool bch2_bkey_normalize(struct bch_fs *, struct bkey_s);
57
58 enum merge_result bch2_bkey_merge(struct bch_fs *,
59                                   struct bkey_s, struct bkey_s);
60
61 void bch2_bkey_renumber(enum btree_node_type, struct bkey_packed *, int);
62
63 #endif /* _BCACHEFS_BKEY_METHODS_H */