2019-03-07 19:46:10 -05:00
|
|
|
#ifndef _BCACHEFS_BTREE_KEY_CACHE_H
|
|
|
|
#define _BCACHEFS_BTREE_KEY_CACHE_H
|
|
|
|
|
2020-11-19 19:54:40 -05:00
|
|
|
static inline size_t bch2_nr_btree_keys_need_flush(struct bch_fs *c)
|
|
|
|
{
|
2021-03-24 23:37:33 -04:00
|
|
|
size_t nr_dirty = atomic_long_read(&c->btree_key_cache.nr_dirty);
|
|
|
|
size_t nr_keys = atomic_long_read(&c->btree_key_cache.nr_keys);
|
2020-12-05 21:03:57 -05:00
|
|
|
size_t max_dirty = 1024 + nr_keys / 2;
|
2020-11-19 19:54:40 -05:00
|
|
|
|
|
|
|
return max_t(ssize_t, 0, nr_dirty - max_dirty);
|
|
|
|
}
|
|
|
|
|
2020-11-19 21:40:03 -05:00
|
|
|
static inline bool bch2_btree_key_cache_must_wait(struct bch_fs *c)
|
|
|
|
{
|
2021-03-24 23:37:33 -04:00
|
|
|
size_t nr_dirty = atomic_long_read(&c->btree_key_cache.nr_dirty);
|
|
|
|
size_t nr_keys = atomic_long_read(&c->btree_key_cache.nr_keys);
|
2020-11-19 21:40:03 -05:00
|
|
|
size_t max_dirty = 4096 + (nr_keys * 3) / 4;
|
|
|
|
|
2021-12-27 23:10:06 -05:00
|
|
|
return nr_dirty > max_dirty;
|
2020-11-19 21:40:03 -05:00
|
|
|
}
|
|
|
|
|
2021-03-31 21:44:55 -04:00
|
|
|
int bch2_btree_key_cache_journal_flush(struct journal *,
|
|
|
|
struct journal_entry_pin *, u64);
|
|
|
|
|
2019-09-22 19:10:21 -04:00
|
|
|
struct bkey_cached *
|
|
|
|
bch2_btree_key_cache_find(struct bch_fs *, enum btree_id, struct bpos);
|
|
|
|
|
2021-08-30 15:18:31 -04:00
|
|
|
int bch2_btree_path_traverse_cached(struct btree_trans *, struct btree_path *,
|
|
|
|
unsigned);
|
2019-03-07 19:46:10 -05:00
|
|
|
|
|
|
|
bool bch2_btree_insert_key_cached(struct btree_trans *,
|
2021-08-30 15:18:31 -04:00
|
|
|
struct btree_path *, struct bkey_i *);
|
2019-03-07 19:46:10 -05:00
|
|
|
int bch2_btree_key_cache_flush(struct btree_trans *,
|
|
|
|
enum btree_id, struct bpos);
|
2022-01-12 01:14:47 -05:00
|
|
|
void bch2_btree_key_cache_drop(struct btree_trans *,
|
|
|
|
struct btree_path *);
|
2019-03-07 19:46:10 -05:00
|
|
|
|
|
|
|
void bch2_fs_btree_key_cache_exit(struct btree_key_cache *);
|
|
|
|
void bch2_fs_btree_key_cache_init_early(struct btree_key_cache *);
|
|
|
|
int bch2_fs_btree_key_cache_init(struct btree_key_cache *);
|
|
|
|
|
2020-06-15 19:53:46 -04:00
|
|
|
void bch2_btree_key_cache_to_text(struct printbuf *, struct btree_key_cache *);
|
|
|
|
|
2020-11-18 14:09:33 -05:00
|
|
|
void bch2_btree_key_cache_exit(void);
|
|
|
|
int __init bch2_btree_key_cache_init(void);
|
|
|
|
|
2019-03-07 19:46:10 -05:00
|
|
|
#endif /* _BCACHEFS_BTREE_KEY_CACHE_H */
|