2021-12-05 13:31:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _BCACHEFS_LRU_H
|
|
|
|
#define _BCACHEFS_LRU_H
|
|
|
|
|
2022-12-06 05:49:13 +08:00
|
|
|
static inline u64 lru_pos_id(struct bpos pos)
|
|
|
|
{
|
|
|
|
return pos.inode >> LRU_TIME_BITS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u64 lru_pos_time(struct bpos pos)
|
|
|
|
{
|
|
|
|
return pos.inode & ~(~0ULL << LRU_TIME_BITS);
|
|
|
|
}
|
|
|
|
|
2023-07-17 12:56:07 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2022-12-05 23:24:19 +08:00
|
|
|
static inline enum bch_lru_type lru_type(struct bkey_s_c l)
|
|
|
|
{
|
|
|
|
u16 lru_id = l.k->p.inode >> 48;
|
|
|
|
|
|
|
|
if (lru_id == BCH_LRU_FRAGMENTATION_START)
|
|
|
|
return BCH_LRU_fragmentation;
|
|
|
|
return BCH_LRU_read;
|
|
|
|
}
|
|
|
|
|
2024-08-13 09:31:25 +08:00
|
|
|
int bch2_lru_validate(struct bch_fs *, struct bkey_s_c, enum bch_validate_flags);
|
2021-12-05 13:31:54 +08:00
|
|
|
void bch2_lru_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
|
|
|
|
|
2023-01-04 12:54:10 +08:00
|
|
|
void bch2_lru_pos_to_text(struct printbuf *, struct bpos);
|
|
|
|
|
2022-10-23 03:59:53 +08:00
|
|
|
#define bch2_bkey_ops_lru ((struct bkey_ops) { \
|
2024-08-13 09:31:25 +08:00
|
|
|
.key_validate = bch2_lru_validate, \
|
2021-12-05 13:31:54 +08:00
|
|
|
.val_to_text = bch2_lru_to_text, \
|
2023-04-30 01:24:18 +08:00
|
|
|
.min_val_size = 8, \
|
2022-10-23 03:59:53 +08:00
|
|
|
})
|
2021-12-05 13:31:54 +08:00
|
|
|
|
2022-12-06 05:49:13 +08:00
|
|
|
int bch2_lru_del(struct btree_trans *, u16, u64, u64);
|
|
|
|
int bch2_lru_set(struct btree_trans *, u16, u64, u64);
|
|
|
|
int bch2_lru_change(struct btree_trans *, u16, u64, u64, u64);
|
2021-12-05 13:31:54 +08:00
|
|
|
|
2024-06-30 06:35:18 +08:00
|
|
|
struct bkey_buf;
|
|
|
|
int bch2_lru_check_set(struct btree_trans *, u16, u64, struct bkey_s_c, struct bkey_buf *);
|
|
|
|
|
2022-05-14 18:58:51 +08:00
|
|
|
int bch2_check_lrus(struct bch_fs *);
|
2022-02-17 16:11:39 +08:00
|
|
|
|
2021-12-05 13:31:54 +08:00
|
|
|
#endif /* _BCACHEFS_LRU_H */
|