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