Linux 6.13-rc4
[linux.git] / fs / bcachefs / bbpos.h
blobbe2edced52133e6592092d5d8e20c643cd8b372a
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _BCACHEFS_BBPOS_H
3 #define _BCACHEFS_BBPOS_H
5 #include "bbpos_types.h"
6 #include "bkey_methods.h"
7 #include "btree_cache.h"
9 static inline int bbpos_cmp(struct bbpos l, struct bbpos r)
11 return cmp_int(l.btree, r.btree) ?: bpos_cmp(l.pos, r.pos);
14 static inline struct bbpos bbpos_successor(struct bbpos pos)
16 if (bpos_cmp(pos.pos, SPOS_MAX)) {
17 pos.pos = bpos_successor(pos.pos);
18 return pos;
21 if (pos.btree != BTREE_ID_NR) {
22 pos.btree++;
23 pos.pos = POS_MIN;
24 return pos;
27 BUG();
30 static inline void bch2_bbpos_to_text(struct printbuf *out, struct bbpos pos)
32 prt_str(out, bch2_btree_id_str(pos.btree));
33 prt_char(out, ':');
34 bch2_bpos_to_text(out, pos.pos);
37 #endif /* _BCACHEFS_BBPOS_H */