2017-03-16 23:18:50 -07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _BCACHEFS_BTREE_CACHE_H
|
|
|
|
#define _BCACHEFS_BTREE_CACHE_H
|
|
|
|
|
|
|
|
#include "bcachefs.h"
|
|
|
|
#include "btree_types.h"
|
2022-10-21 16:15:07 -07:00
|
|
|
#include "bkey_methods.h"
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2022-02-26 09:10:20 -07:00
|
|
|
extern const char * const bch2_btree_node_flags[];
|
|
|
|
|
2017-03-16 23:18:50 -07:00
|
|
|
struct btree_iter;
|
|
|
|
|
|
|
|
void bch2_recalc_btree_reserve(struct bch_fs *);
|
|
|
|
|
2024-08-19 12:22:55 -07:00
|
|
|
void bch2_btree_node_to_freelist(struct bch_fs *, struct btree *);
|
|
|
|
|
2024-10-30 22:17:54 -07:00
|
|
|
void __bch2_btree_node_hash_remove(struct btree_cache *, struct btree *);
|
2017-03-16 23:18:50 -07:00
|
|
|
void bch2_btree_node_hash_remove(struct btree_cache *, struct btree *);
|
2024-10-30 22:17:54 -07:00
|
|
|
|
2017-03-16 23:18:50 -07:00
|
|
|
int __bch2_btree_node_hash_insert(struct btree_cache *, struct btree *);
|
|
|
|
int bch2_btree_node_hash_insert(struct btree_cache *, struct btree *,
|
|
|
|
unsigned, enum btree_id);
|
|
|
|
|
bcachefs: Rework btree node pinning
In backpointers fsck, we do a seqential scan of one btree, and check
references to another: extents <-> backpointers
Checking references generates random lookups, so we want to pin that
btree in memory (or only a range, if it doesn't fit in ram).
Previously, this was done with a simple check in the shrinker - "if
btree node is in range being pinned, don't free it" - but this generated
OOMs, as our shrinker wasn't well behaved if there was less memory
available than expected.
Instead, we now have two different shrinkers and lru lists; the second
shrinker being for pinned nodes, with seeks set much higher than normal
- so they can still be freed if necessary, but we'll prefer not to.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2024-09-04 17:49:37 -07:00
|
|
|
void bch2_node_pin(struct bch_fs *, struct btree *);
|
|
|
|
void bch2_btree_cache_unpin(struct bch_fs *);
|
|
|
|
|
2024-04-07 16:07:09 -07:00
|
|
|
void bch2_btree_node_update_key_early(struct btree_trans *, enum btree_id, unsigned,
|
|
|
|
struct bkey_s_c, struct bkey_i *);
|
|
|
|
|
2023-12-02 01:36:27 -07:00
|
|
|
void bch2_btree_cache_cannibalize_unlock(struct btree_trans *);
|
|
|
|
int bch2_btree_cache_cannibalize_lock(struct btree_trans *, struct closure *);
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2021-04-20 17:21:12 -07:00
|
|
|
struct btree *__bch2_btree_node_mem_alloc(struct bch_fs *);
|
2023-03-02 00:12:18 -07:00
|
|
|
struct btree *bch2_btree_node_mem_alloc(struct btree_trans *, bool);
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2021-08-30 12:18:31 -07:00
|
|
|
struct btree *bch2_btree_node_get(struct btree_trans *, struct btree_path *,
|
2017-03-16 23:18:50 -07:00
|
|
|
const struct bkey_i *, unsigned,
|
2020-10-28 11:17:46 -07:00
|
|
|
enum six_lock_type, unsigned long);
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2022-08-21 11:29:43 -07:00
|
|
|
struct btree *bch2_btree_node_get_noiter(struct btree_trans *, const struct bkey_i *,
|
2021-01-26 18:59:00 -07:00
|
|
|
enum btree_id, unsigned, bool);
|
2020-03-15 20:29:43 -07:00
|
|
|
|
2023-03-02 00:12:18 -07:00
|
|
|
int bch2_btree_node_prefetch(struct btree_trans *, struct btree_path *,
|
2021-08-30 12:18:31 -07:00
|
|
|
const struct bkey_i *, enum btree_id, unsigned);
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2022-08-21 11:29:43 -07:00
|
|
|
void bch2_btree_node_evict(struct btree_trans *, const struct bkey_i *);
|
2021-04-25 13:24:03 -07:00
|
|
|
|
2017-03-16 23:18:50 -07:00
|
|
|
void bch2_fs_btree_cache_exit(struct bch_fs *);
|
|
|
|
int bch2_fs_btree_cache_init(struct bch_fs *);
|
|
|
|
void bch2_fs_btree_cache_init_early(struct btree_cache *);
|
|
|
|
|
2020-02-18 15:15:32 -07:00
|
|
|
static inline u64 btree_ptr_hash_val(const struct bkey_i *k)
|
|
|
|
{
|
|
|
|
switch (k->k.type) {
|
|
|
|
case KEY_TYPE_btree_ptr:
|
|
|
|
return *((u64 *) bkey_i_to_btree_ptr_c(k)->v.start);
|
2020-02-07 11:38:02 -07:00
|
|
|
case KEY_TYPE_btree_ptr_v2:
|
2023-07-06 19:47:42 -07:00
|
|
|
/*
|
|
|
|
* The cast/deref is only necessary to avoid sparse endianness
|
|
|
|
* warnings:
|
|
|
|
*/
|
|
|
|
return *((u64 *) &bkey_i_to_btree_ptr_v2_c(k)->v.seq);
|
2020-02-18 15:15:32 -07:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2020-02-24 13:25:00 -07:00
|
|
|
static inline struct btree *btree_node_mem_ptr(const struct bkey_i *k)
|
|
|
|
{
|
|
|
|
return k->k.type == KEY_TYPE_btree_ptr_v2
|
|
|
|
? (void *)(unsigned long)bkey_i_to_btree_ptr_v2_c(k)->v.mem_ptr
|
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-16 23:18:50 -07:00
|
|
|
/* is btree node in hash table? */
|
|
|
|
static inline bool btree_node_hashed(struct btree *b)
|
|
|
|
{
|
2020-02-18 15:15:32 -07:00
|
|
|
return b->hash_val != 0;
|
2017-03-16 23:18:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#define for_each_cached_btree(_b, _c, _tbl, _iter, _pos) \
|
|
|
|
for ((_tbl) = rht_dereference_rcu((_c)->btree_cache.table.tbl, \
|
|
|
|
&(_c)->btree_cache.table), \
|
|
|
|
_iter = 0; _iter < (_tbl)->size; _iter++) \
|
|
|
|
rht_for_each_entry_rcu((_b), (_pos), _tbl, _iter, hash)
|
|
|
|
|
2024-01-16 11:29:59 -07:00
|
|
|
static inline size_t btree_buf_bytes(const struct btree *b)
|
2017-03-16 23:18:50 -07:00
|
|
|
{
|
2024-01-16 11:29:59 -07:00
|
|
|
return 1UL << b->byte_order;
|
2017-03-16 23:18:50 -07:00
|
|
|
}
|
|
|
|
|
2024-01-16 11:29:59 -07:00
|
|
|
static inline size_t btree_buf_max_u64s(const struct btree *b)
|
2017-03-16 23:18:50 -07:00
|
|
|
{
|
2024-01-16 11:29:59 -07:00
|
|
|
return (btree_buf_bytes(b) - sizeof(struct btree_node)) / sizeof(u64);
|
2017-03-16 23:18:50 -07:00
|
|
|
}
|
|
|
|
|
2024-01-16 11:29:59 -07:00
|
|
|
static inline size_t btree_max_u64s(const struct bch_fs *c)
|
2017-03-16 23:18:50 -07:00
|
|
|
{
|
2024-01-16 11:29:59 -07:00
|
|
|
return (c->opts.btree_node_size - sizeof(struct btree_node)) / sizeof(u64);
|
2017-03-16 23:18:50 -07:00
|
|
|
}
|
|
|
|
|
2024-01-16 11:29:59 -07:00
|
|
|
static inline size_t btree_sectors(const struct bch_fs *c)
|
|
|
|
{
|
|
|
|
return c->opts.btree_node_size >> SECTOR_SHIFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned btree_blocks(const struct bch_fs *c)
|
2017-03-16 23:18:50 -07:00
|
|
|
{
|
2021-12-14 12:24:41 -07:00
|
|
|
return btree_sectors(c) >> c->block_bits;
|
2017-03-16 23:18:50 -07:00
|
|
|
}
|
|
|
|
|
2020-04-11 09:31:16 -07:00
|
|
|
#define BTREE_SPLIT_THRESHOLD(c) (btree_max_u64s(c) * 2 / 3)
|
2017-03-16 23:18:50 -07:00
|
|
|
|
|
|
|
#define BTREE_FOREGROUND_MERGE_THRESHOLD(c) (btree_max_u64s(c) * 1 / 3)
|
|
|
|
#define BTREE_FOREGROUND_MERGE_HYSTERESIS(c) \
|
|
|
|
(BTREE_FOREGROUND_MERGE_THRESHOLD(c) + \
|
2021-03-31 13:10:21 -07:00
|
|
|
(BTREE_FOREGROUND_MERGE_THRESHOLD(c) >> 2))
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2023-06-28 19:09:13 -07:00
|
|
|
static inline unsigned btree_id_nr_alive(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
return BTREE_ID_NR + c->btree_roots_extra.nr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct btree_root *bch2_btree_id_root(struct bch_fs *c, unsigned id)
|
|
|
|
{
|
|
|
|
if (likely(id < BTREE_ID_NR)) {
|
|
|
|
return &c->btree_roots_known[id];
|
|
|
|
} else {
|
|
|
|
unsigned idx = id - BTREE_ID_NR;
|
|
|
|
|
|
|
|
EBUG_ON(idx >= c->btree_roots_extra.nr);
|
|
|
|
return &c->btree_roots_extra.data[idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct btree *btree_node_root(struct bch_fs *c, struct btree *b)
|
|
|
|
{
|
|
|
|
return bch2_btree_id_root(c, b->c.btree_id)->b;
|
|
|
|
}
|
2017-03-16 23:18:50 -07:00
|
|
|
|
2023-10-19 19:49:08 -07:00
|
|
|
const char *bch2_btree_id_str(enum btree_id);
|
2024-06-07 15:19:39 -07:00
|
|
|
void bch2_btree_id_to_text(struct printbuf *, enum btree_id);
|
|
|
|
|
2023-10-19 19:49:08 -07:00
|
|
|
void bch2_btree_pos_to_text(struct printbuf *, struct bch_fs *, const struct btree *);
|
|
|
|
void bch2_btree_node_to_text(struct printbuf *, struct bch_fs *, const struct btree *);
|
2022-09-29 20:37:15 -07:00
|
|
|
void bch2_btree_cache_to_text(struct printbuf *, const struct btree_cache *);
|
2017-03-16 23:18:50 -07:00
|
|
|
|
|
|
|
#endif /* _BCACHEFS_BTREE_CACHE_H */
|