summaryrefslogtreecommitdiff
path: root/libbcachefs/lru.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-07-20 18:09:44 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2023-07-20 18:09:44 -0400
commit44fc32e7ef89d794854409d98d3d1c3fe8fb3580 (patch)
tree8dd30cbe9ab6ea2178ed6d847176bef3acdcad1c /libbcachefs/lru.h
parenta7b0ba44f04edfddb4db77e962094c061aa4be45 (diff)
Update bcachefs sources to ee560a3929 bcachefs: Print version, options earlier in startup path
Diffstat (limited to 'libbcachefs/lru.h')
-rw-r--r--libbcachefs/lru.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/libbcachefs/lru.h b/libbcachefs/lru.h
index 7a3be20a..be66bf9a 100644
--- a/libbcachefs/lru.h
+++ b/libbcachefs/lru.h
@@ -5,13 +5,6 @@
#define LRU_TIME_BITS 48
#define LRU_TIME_MAX ((1ULL << LRU_TIME_BITS) - 1)
-static inline struct bpos lru_pos(u16 lru_id, u64 dev_bucket, u64 time)
-{
- EBUG_ON(time > LRU_TIME_MAX);
-
- return POS(((u64) lru_id << LRU_TIME_BITS)|time, dev_bucket);
-}
-
static inline u64 lru_pos_id(struct bpos pos)
{
return pos.inode >> LRU_TIME_BITS;
@@ -22,6 +15,18 @@ static inline u64 lru_pos_time(struct bpos pos)
return pos.inode & ~(~0ULL << LRU_TIME_BITS);
}
+static inline struct bpos lru_pos(u16 lru_id, u64 dev_bucket, u64 time)
+{
+ struct bpos pos = POS(((u64) lru_id << LRU_TIME_BITS)|time, dev_bucket);
+
+ EBUG_ON(time > LRU_TIME_MAX);
+ EBUG_ON(lru_pos_id(pos) != lru_id);
+ EBUG_ON(lru_pos_time(pos) != time);
+ EBUG_ON(pos.offset != dev_bucket);
+
+ return pos;
+}
+
#define BCH_LRU_TYPES() \
x(read) \
x(fragmentation)