2017-03-17 14:18:50 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _BCACHEFS_BTREE_ITER_H
|
|
|
|
#define _BCACHEFS_BTREE_ITER_H
|
|
|
|
|
2019-01-14 05:02:22 +08:00
|
|
|
#include "bset.h"
|
2017-03-17 14:18:50 +08:00
|
|
|
#include "btree_types.h"
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline void __btree_path_get(struct btree_path *path, bool intent)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
path->ref++;
|
|
|
|
path->intent_ref += intent;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline bool __btree_path_put(struct btree_path *path, bool intent)
|
|
|
|
{
|
|
|
|
EBUG_ON(!path->ref);
|
|
|
|
EBUG_ON(!path->intent_ref && intent);
|
|
|
|
path->intent_ref -= intent;
|
|
|
|
return --path->ref == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void btree_path_set_dirty(struct btree_path *path,
|
|
|
|
enum btree_path_uptodate u)
|
|
|
|
{
|
|
|
|
path->uptodate = max_t(unsigned, path->uptodate, u);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct btree *btree_path_node(struct btree_path *path,
|
2017-03-17 14:18:50 +08:00
|
|
|
unsigned level)
|
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
return level < BTREE_MAX_DEPTH ? path->l[level].b : NULL;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline bool btree_node_lock_seq_matches(const struct btree_path *path,
|
2020-06-07 00:28:01 +08:00
|
|
|
const struct btree *b, unsigned level)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* We don't compare the low bits of the lock sequence numbers because
|
2021-08-31 03:18:31 +08:00
|
|
|
* @path might have taken a write lock on @b, and we don't want to skip
|
|
|
|
* the linked path if the sequence numbers were equal before taking that
|
|
|
|
* write lock. The lock sequence number is incremented by taking and
|
|
|
|
* releasing write locks and is even when unlocked:
|
2020-06-07 00:28:01 +08:00
|
|
|
*/
|
2021-08-31 03:18:31 +08:00
|
|
|
return path->l[level].lock_seq >> 1 == b->c.lock.state.seq >> 1;
|
2020-06-07 00:28:01 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree *btree_node_parent(struct btree_path *path,
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree *b)
|
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
return btree_path_node(path, b->c.level + 1);
|
2019-03-28 10:03:30 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
/* Iterate over paths within a transaction: */
|
2019-03-28 10:03:30 +08:00
|
|
|
|
2021-09-04 05:18:57 +08:00
|
|
|
void __bch2_btree_trans_sort_paths(struct btree_trans *);
|
|
|
|
|
|
|
|
static inline void btree_trans_sort_paths(struct btree_trans *trans)
|
|
|
|
{
|
|
|
|
if (!IS_ENABLED(CONFIG_BCACHEFS_DEBUG) &&
|
|
|
|
trans->paths_sorted)
|
|
|
|
return;
|
|
|
|
__bch2_btree_trans_sort_paths(trans);
|
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree_path *
|
|
|
|
__trans_next_path(struct btree_trans *trans, unsigned idx)
|
2019-03-28 10:03:30 +08:00
|
|
|
{
|
2020-12-10 02:34:42 +08:00
|
|
|
u64 l;
|
|
|
|
|
|
|
|
if (idx == BTREE_ITER_MAX)
|
|
|
|
return NULL;
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
l = trans->paths_allocated >> idx;
|
2020-12-02 12:11:53 +08:00
|
|
|
if (!l)
|
|
|
|
return NULL;
|
2019-03-28 10:03:30 +08:00
|
|
|
|
2020-12-02 12:11:53 +08:00
|
|
|
idx += __ffs64(l);
|
2020-12-10 02:34:42 +08:00
|
|
|
EBUG_ON(idx >= BTREE_ITER_MAX);
|
2021-08-31 03:18:31 +08:00
|
|
|
EBUG_ON(trans->paths[idx].idx != idx);
|
|
|
|
return &trans->paths[idx];
|
2019-03-28 10:03:30 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
#define trans_for_each_path(_trans, _path) \
|
|
|
|
for (_path = __trans_next_path((_trans), 0); \
|
|
|
|
(_path); \
|
|
|
|
_path = __trans_next_path((_trans), (_path)->idx + 1))
|
2019-03-28 10:03:30 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree_path *next_btree_path(struct btree_trans *trans, struct btree_path *path)
|
2021-06-13 03:45:45 +08:00
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
unsigned idx = path ? path->sorted_idx + 1 : 0;
|
2021-06-13 03:45:45 +08:00
|
|
|
|
|
|
|
EBUG_ON(idx > trans->nr_sorted);
|
|
|
|
|
|
|
|
return idx < trans->nr_sorted
|
2021-08-31 03:18:31 +08:00
|
|
|
? trans->paths + trans->sorted[idx]
|
2021-06-13 03:45:45 +08:00
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree_path *prev_btree_path(struct btree_trans *trans, struct btree_path *path)
|
2021-06-13 03:45:45 +08:00
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
unsigned idx = path ? path->sorted_idx : trans->nr_sorted;
|
2021-06-13 03:45:45 +08:00
|
|
|
|
|
|
|
return idx
|
2021-08-31 03:18:31 +08:00
|
|
|
? trans->paths + trans->sorted[idx - 1]
|
2021-06-13 03:45:45 +08:00
|
|
|
: NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
#define trans_for_each_path_inorder(_trans, _path, _i) \
|
2021-06-13 03:45:45 +08:00
|
|
|
for (_i = 0; \
|
2021-08-31 03:18:31 +08:00
|
|
|
((_path) = (_trans)->paths + trans->sorted[_i]), (_i) < (_trans)->nr_sorted;\
|
2021-06-13 03:45:45 +08:00
|
|
|
_i++)
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
#define trans_for_each_path_inorder_reverse(_trans, _path, _i) \
|
2021-06-13 03:45:45 +08:00
|
|
|
for (_i = trans->nr_sorted - 1; \
|
2021-08-31 03:18:31 +08:00
|
|
|
((_path) = (_trans)->paths + trans->sorted[_i]), (_i) >= 0;\
|
2021-06-13 03:45:45 +08:00
|
|
|
--_i)
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline bool __path_has_node(const struct btree_path *path,
|
2017-03-17 14:18:50 +08:00
|
|
|
const struct btree *b)
|
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
return path->l[b->c.level].b == b &&
|
|
|
|
btree_node_lock_seq_matches(path, b, b->c.level);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree_path *
|
|
|
|
__trans_next_path_with_node(struct btree_trans *trans, struct btree *b,
|
2019-03-28 11:14:38 +08:00
|
|
|
unsigned idx)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
struct btree_path *path = __trans_next_path(trans, idx);
|
|
|
|
|
|
|
|
while (path && !__path_has_node(path, b))
|
|
|
|
path = __trans_next_path(trans, path->idx + 1);
|
2019-03-28 10:03:30 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define trans_for_each_path_with_node(_trans, _b, _path) \
|
|
|
|
for (_path = __trans_next_path_with_node((_trans), (_b), 0); \
|
|
|
|
(_path); \
|
|
|
|
_path = __trans_next_path_with_node((_trans), (_b), \
|
|
|
|
(_path)->idx + 1))
|
|
|
|
|
|
|
|
struct btree_path *__bch2_btree_path_make_mut(struct btree_trans *,
|
|
|
|
struct btree_path *, bool);
|
2019-03-28 10:03:30 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline struct btree_path * __must_check
|
|
|
|
bch2_btree_path_make_mut(struct btree_trans *trans,
|
|
|
|
struct btree_path *path, bool intent)
|
|
|
|
{
|
|
|
|
if (path->ref > 1 || path->preserve)
|
|
|
|
path = __bch2_btree_path_make_mut(trans, path, intent);
|
2022-03-31 01:47:07 +08:00
|
|
|
path->should_be_locked = false;
|
2021-08-31 03:18:31 +08:00
|
|
|
return path;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2022-02-07 11:21:44 +08:00
|
|
|
struct btree_path * __must_check
|
|
|
|
__bch2_btree_path_set_pos(struct btree_trans *, struct btree_path *,
|
|
|
|
struct bpos, bool, int);
|
|
|
|
|
|
|
|
static inline struct btree_path * __must_check
|
|
|
|
bch2_btree_path_set_pos(struct btree_trans *trans,
|
|
|
|
struct btree_path *path, struct bpos new_pos,
|
|
|
|
bool intent)
|
|
|
|
{
|
|
|
|
int cmp = bpos_cmp(new_pos, path->pos);
|
|
|
|
|
|
|
|
return cmp
|
|
|
|
? __bch2_btree_path_set_pos(trans, path, new_pos, intent, cmp)
|
|
|
|
: path;
|
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
int __must_check bch2_btree_path_traverse(struct btree_trans *,
|
|
|
|
struct btree_path *, unsigned);
|
2021-12-22 09:48:26 +08:00
|
|
|
struct btree_path *bch2_path_get(struct btree_trans *, enum btree_id, struct bpos,
|
|
|
|
unsigned, unsigned, unsigned);
|
2021-08-31 03:18:31 +08:00
|
|
|
inline struct bkey_s_c bch2_btree_path_peek_slot(struct btree_path *, struct bkey *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-05-22 01:10:39 +08:00
|
|
|
struct bkey_i *bch2_btree_journal_peek_slot(struct btree_trans *,
|
|
|
|
struct btree_iter *, struct bpos);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
#ifdef CONFIG_BCACHEFS_DEBUG
|
2021-08-31 03:18:31 +08:00
|
|
|
void bch2_trans_verify_paths(struct btree_trans *);
|
2021-08-31 02:45:11 +08:00
|
|
|
void bch2_trans_verify_locks(struct btree_trans *);
|
2021-11-06 12:03:40 +08:00
|
|
|
void bch2_assert_pos_locked(struct btree_trans *, enum btree_id,
|
|
|
|
struct bpos, bool);
|
2017-03-17 14:18:50 +08:00
|
|
|
#else
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline void bch2_trans_verify_paths(struct btree_trans *trans) {}
|
|
|
|
static inline void bch2_trans_verify_locks(struct btree_trans *trans) {}
|
2021-11-06 12:03:40 +08:00
|
|
|
static inline void bch2_assert_pos_locked(struct btree_trans *trans, enum btree_id id,
|
|
|
|
struct bpos pos, bool key_cache) {}
|
2017-03-17 14:18:50 +08:00
|
|
|
#endif
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
void bch2_btree_path_fix_key_modified(struct btree_trans *trans,
|
2021-08-25 09:30:06 +08:00
|
|
|
struct btree *, struct bkey_packed *);
|
2021-08-31 03:18:31 +08:00
|
|
|
void bch2_btree_node_iter_fix(struct btree_trans *trans, struct btree_path *,
|
2021-08-25 09:30:06 +08:00
|
|
|
struct btree *, struct btree_node_iter *,
|
|
|
|
struct bkey_packed *, unsigned, unsigned);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
bool bch2_btree_path_relock_intent(struct btree_trans *, struct btree_path *);
|
|
|
|
|
|
|
|
void bch2_path_put(struct btree_trans *, struct btree_path *, bool);
|
2021-07-15 03:13:27 +08:00
|
|
|
|
2019-05-15 21:47:40 +08:00
|
|
|
bool bch2_trans_relock(struct btree_trans *);
|
|
|
|
void bch2_trans_unlock(struct btree_trans *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-07-26 05:19:52 +08:00
|
|
|
__always_inline
|
|
|
|
static inline int btree_trans_restart(struct btree_trans *trans)
|
|
|
|
{
|
|
|
|
trans->restarted = true;
|
|
|
|
bch2_trans_unlock(trans);
|
|
|
|
return -EINTR;
|
|
|
|
}
|
|
|
|
|
2021-11-04 00:08:02 +08:00
|
|
|
bool bch2_btree_node_upgrade(struct btree_trans *,
|
|
|
|
struct btree_path *, unsigned);
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
bool __bch2_btree_path_upgrade(struct btree_trans *,
|
|
|
|
struct btree_path *, unsigned);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline bool bch2_btree_path_upgrade(struct btree_trans *trans,
|
|
|
|
struct btree_path *path,
|
2019-05-11 05:09:42 +08:00
|
|
|
unsigned new_locks_want)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
new_locks_want = min(new_locks_want, BTREE_MAX_DEPTH);
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
return path->locks_want < new_locks_want
|
|
|
|
? __bch2_btree_path_upgrade(trans, path, new_locks_want)
|
|
|
|
: path->uptodate == BTREE_ITER_UPTODATE;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
void __bch2_btree_path_downgrade(struct btree_path *, unsigned);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
static inline void bch2_btree_path_downgrade(struct btree_path *path)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-08-31 03:18:31 +08:00
|
|
|
unsigned new_locks_want = path->level + !!path->intent_ref;
|
2021-04-03 09:29:05 +08:00
|
|
|
|
2021-08-31 03:18:31 +08:00
|
|
|
if (path->locks_want > new_locks_want)
|
|
|
|
__bch2_btree_path_downgrade(path, new_locks_want);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2020-06-09 01:26:48 +08:00
|
|
|
void bch2_trans_downgrade(struct btree_trans *);
|
|
|
|
|
2021-08-31 02:36:03 +08:00
|
|
|
void bch2_trans_node_add(struct btree_trans *trans, struct btree *);
|
|
|
|
void bch2_trans_node_reinit_iter(struct btree_trans *, struct btree *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-09-08 03:34:16 +08:00
|
|
|
int __must_check __bch2_btree_iter_traverse(struct btree_iter *iter);
|
2021-03-24 09:22:50 +08:00
|
|
|
int __must_check bch2_btree_iter_traverse(struct btree_iter *);
|
2019-09-09 02:00:12 +08:00
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree *bch2_btree_iter_peek_node(struct btree_iter *);
|
2020-02-19 05:17:55 +08:00
|
|
|
struct btree *bch2_btree_iter_next_node(struct btree_iter *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-03-12 01:31:52 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_peek_upto(struct btree_iter *, struct bpos);
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_next(struct btree_iter *);
|
2019-09-08 05:17:21 +08:00
|
|
|
|
2022-04-13 06:04:08 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_peek_all_levels(struct btree_iter *);
|
|
|
|
|
2022-03-12 01:31:52 +08:00
|
|
|
static inline struct bkey_s_c bch2_btree_iter_peek(struct btree_iter *iter)
|
|
|
|
{
|
|
|
|
return bch2_btree_iter_peek_upto(iter, SPOS_MAX);
|
|
|
|
}
|
|
|
|
|
2019-09-08 05:17:21 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_peek_prev(struct btree_iter *);
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_prev(struct btree_iter *);
|
|
|
|
|
|
|
|
struct bkey_s_c bch2_btree_iter_peek_slot(struct btree_iter *);
|
|
|
|
struct bkey_s_c bch2_btree_iter_next_slot(struct btree_iter *);
|
2021-03-03 11:45:28 +08:00
|
|
|
struct bkey_s_c bch2_btree_iter_prev_slot(struct btree_iter *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-03-22 04:55:25 +08:00
|
|
|
bool bch2_btree_iter_advance(struct btree_iter *);
|
|
|
|
bool bch2_btree_iter_rewind(struct btree_iter *);
|
2021-03-22 09:16:52 +08:00
|
|
|
|
2022-01-09 14:07:29 +08:00
|
|
|
static inline void __bch2_btree_iter_set_pos(struct btree_iter *iter, struct bpos new_pos)
|
2021-03-22 09:16:52 +08:00
|
|
|
{
|
2021-04-04 09:09:13 +08:00
|
|
|
iter->k.type = KEY_TYPE_deleted;
|
|
|
|
iter->k.p.inode = iter->pos.inode = new_pos.inode;
|
|
|
|
iter->k.p.offset = iter->pos.offset = new_pos.offset;
|
|
|
|
iter->k.p.snapshot = iter->pos.snapshot = new_pos.snapshot;
|
|
|
|
iter->k.size = 0;
|
2021-03-22 09:16:52 +08:00
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-01-09 14:07:29 +08:00
|
|
|
static inline void bch2_btree_iter_set_pos(struct btree_iter *iter, struct bpos new_pos)
|
|
|
|
{
|
2022-01-09 10:22:31 +08:00
|
|
|
if (unlikely(iter->update_path))
|
|
|
|
bch2_path_put(iter->trans, iter->update_path,
|
|
|
|
iter->flags & BTREE_ITER_INTENT);
|
|
|
|
iter->update_path = NULL;
|
|
|
|
|
2022-01-09 14:07:29 +08:00
|
|
|
if (!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS))
|
|
|
|
new_pos.snapshot = iter->snapshot;
|
|
|
|
|
|
|
|
__bch2_btree_iter_set_pos(iter, new_pos);
|
|
|
|
}
|
|
|
|
|
2021-06-15 06:16:10 +08:00
|
|
|
static inline void bch2_btree_iter_set_pos_to_extent_start(struct btree_iter *iter)
|
|
|
|
{
|
|
|
|
BUG_ON(!(iter->flags & BTREE_ITER_IS_EXTENTS));
|
|
|
|
iter->pos = bkey_start_pos(&iter->k);
|
|
|
|
}
|
|
|
|
|
2021-03-05 11:29:25 +08:00
|
|
|
static inline void bch2_btree_iter_set_snapshot(struct btree_iter *iter, u32 snapshot)
|
|
|
|
{
|
|
|
|
struct bpos pos = iter->pos;
|
|
|
|
|
|
|
|
iter->snapshot = snapshot;
|
|
|
|
pos.snapshot = snapshot;
|
|
|
|
bch2_btree_iter_set_pos(iter, pos);
|
|
|
|
}
|
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
void bch2_trans_iter_exit(struct btree_trans *, struct btree_iter *);
|
|
|
|
void bch2_trans_iter_init(struct btree_trans *, struct btree_iter *,
|
|
|
|
unsigned, struct bpos, unsigned);
|
|
|
|
void bch2_trans_node_iter_init(struct btree_trans *, struct btree_iter *,
|
|
|
|
enum btree_id, struct bpos,
|
|
|
|
unsigned, unsigned, unsigned);
|
|
|
|
void bch2_trans_copy_iter(struct btree_iter *, struct btree_iter *);
|
|
|
|
|
|
|
|
static inline void set_btree_iter_dontneed(struct btree_iter *iter)
|
|
|
|
{
|
|
|
|
iter->path->preserve = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *bch2_trans_kmalloc(struct btree_trans *, size_t);
|
|
|
|
void bch2_trans_begin(struct btree_trans *);
|
|
|
|
|
|
|
|
static inline struct btree *
|
|
|
|
__btree_iter_peek_node_and_restart(struct btree_trans *trans, struct btree_iter *iter)
|
|
|
|
{
|
|
|
|
struct btree *b;
|
|
|
|
|
|
|
|
while (b = bch2_btree_iter_peek_node(iter),
|
|
|
|
PTR_ERR_OR_ZERO(b) == -EINTR)
|
|
|
|
bch2_trans_begin(trans);
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2021-10-20 02:20:50 +08:00
|
|
|
#define __for_each_btree_node(_trans, _iter, _btree_id, _start, \
|
|
|
|
_locks_want, _depth, _flags, _b, _ret) \
|
2021-08-31 03:18:31 +08:00
|
|
|
for (bch2_trans_node_iter_init((_trans), &(_iter), (_btree_id), \
|
2021-10-22 00:05:21 +08:00
|
|
|
_start, _locks_want, _depth, _flags); \
|
|
|
|
(_b) = __btree_iter_peek_node_and_restart((_trans), &(_iter)),\
|
2021-10-20 02:20:50 +08:00
|
|
|
!((_ret) = PTR_ERR_OR_ZERO(_b)) && (_b); \
|
2021-08-31 03:18:31 +08:00
|
|
|
(_b) = bch2_btree_iter_next_node(&(_iter)))
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-03-26 03:10:15 +08:00
|
|
|
#define for_each_btree_node(_trans, _iter, _btree_id, _start, \
|
2021-10-20 02:20:50 +08:00
|
|
|
_flags, _b, _ret) \
|
2019-03-26 03:10:15 +08:00
|
|
|
__for_each_btree_node(_trans, _iter, _btree_id, _start, \
|
2021-10-20 02:20:50 +08:00
|
|
|
0, 0, _flags, _b, _ret)
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
static inline int bkey_err(struct bkey_s_c k)
|
|
|
|
{
|
|
|
|
return PTR_ERR_OR_ZERO(k.k);
|
|
|
|
}
|
|
|
|
|
2022-01-09 14:07:29 +08:00
|
|
|
static inline struct bkey_s_c bch2_btree_iter_peek_type(struct btree_iter *iter,
|
2022-03-12 01:31:52 +08:00
|
|
|
unsigned flags)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2022-04-13 06:04:08 +08:00
|
|
|
return flags & BTREE_ITER_ALL_LEVELS ? bch2_btree_iter_peek_all_levels(iter) :
|
|
|
|
flags & BTREE_ITER_SLOTS ? bch2_btree_iter_peek_slot(iter) :
|
|
|
|
bch2_btree_iter_peek(iter);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2022-03-12 01:31:52 +08:00
|
|
|
static inline struct bkey_s_c bch2_btree_iter_peek_upto_type(struct btree_iter *iter,
|
|
|
|
struct bpos end,
|
|
|
|
unsigned flags)
|
|
|
|
{
|
|
|
|
if (!(flags & BTREE_ITER_SLOTS))
|
|
|
|
return bch2_btree_iter_peek_upto(iter, end);
|
|
|
|
|
|
|
|
if (bkey_cmp(iter->pos, end) > 0)
|
|
|
|
return bkey_s_c_null;
|
|
|
|
|
|
|
|
return bch2_btree_iter_peek_slot(iter);
|
|
|
|
}
|
|
|
|
|
2021-11-24 08:00:23 +08:00
|
|
|
static inline int btree_trans_too_many_iters(struct btree_trans *trans)
|
|
|
|
{
|
|
|
|
return hweight64(trans->paths_allocated) > BTREE_ITER_MAX / 2
|
|
|
|
? -EINTR : 0;
|
|
|
|
}
|
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
static inline struct bkey_s_c
|
|
|
|
__bch2_btree_iter_peek_and_restart(struct btree_trans *trans,
|
|
|
|
struct btree_iter *iter, unsigned flags)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-10-22 00:05:21 +08:00
|
|
|
struct bkey_s_c k;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-11-24 08:00:23 +08:00
|
|
|
while (btree_trans_too_many_iters(trans) ||
|
2022-01-09 14:07:29 +08:00
|
|
|
(k = bch2_btree_iter_peek_type(iter, flags),
|
2021-10-26 06:30:28 +08:00
|
|
|
bkey_err(k) == -EINTR))
|
2021-10-22 00:05:21 +08:00
|
|
|
bch2_trans_begin(trans);
|
|
|
|
|
|
|
|
return k;
|
2019-09-26 03:57:56 +08:00
|
|
|
}
|
|
|
|
|
2019-04-18 03:49:28 +08:00
|
|
|
#define for_each_btree_key(_trans, _iter, _btree_id, \
|
|
|
|
_start, _flags, _k, _ret) \
|
2021-08-31 03:18:31 +08:00
|
|
|
for (bch2_trans_iter_init((_trans), &(_iter), (_btree_id), \
|
2021-10-22 00:05:21 +08:00
|
|
|
(_start), (_flags)); \
|
|
|
|
(_k) = __bch2_btree_iter_peek_and_restart((_trans), &(_iter), _flags),\
|
2021-03-05 11:11:28 +08:00
|
|
|
!((_ret) = bkey_err(_k)) && (_k).k; \
|
2021-10-22 00:05:21 +08:00
|
|
|
bch2_btree_iter_advance(&(_iter)))
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
#define for_each_btree_key_norestart(_trans, _iter, _btree_id, \
|
|
|
|
_start, _flags, _k, _ret) \
|
|
|
|
for (bch2_trans_iter_init((_trans), &(_iter), (_btree_id), \
|
|
|
|
(_start), (_flags)); \
|
2022-01-09 14:07:29 +08:00
|
|
|
(_k) = bch2_btree_iter_peek_type(&(_iter), _flags), \
|
2019-09-26 03:57:56 +08:00
|
|
|
!((_ret) = bkey_err(_k)) && (_k).k; \
|
2021-10-22 00:05:21 +08:00
|
|
|
bch2_btree_iter_advance(&(_iter)))
|
2022-03-12 01:31:52 +08:00
|
|
|
|
|
|
|
#define for_each_btree_key_upto_norestart(_trans, _iter, _btree_id, \
|
|
|
|
_start, _end, _flags, _k, _ret) \
|
|
|
|
for (bch2_trans_iter_init((_trans), &(_iter), (_btree_id), \
|
|
|
|
(_start), (_flags)); \
|
|
|
|
(_k) = bch2_btree_iter_peek_upto_type(&(_iter), _end, _flags),\
|
|
|
|
!((_ret) = bkey_err(_k)) && (_k).k; \
|
|
|
|
bch2_btree_iter_advance(&(_iter)))
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
#define for_each_btree_key_continue(_trans, _iter, _flags, _k, _ret) \
|
|
|
|
for (; \
|
|
|
|
(_k) = __bch2_btree_iter_peek_and_restart((_trans), &(_iter), _flags),\
|
|
|
|
!((_ret) = bkey_err(_k)) && (_k).k; \
|
|
|
|
bch2_btree_iter_advance(&(_iter)))
|
2021-02-21 11:19:34 +08:00
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
#define for_each_btree_key_continue_norestart(_iter, _flags, _k, _ret) \
|
|
|
|
for (; \
|
2022-01-09 14:07:29 +08:00
|
|
|
(_k) = bch2_btree_iter_peek_type(&(_iter), _flags), \
|
2021-10-22 00:05:21 +08:00
|
|
|
!((_ret) = bkey_err(_k)) && (_k).k; \
|
|
|
|
bch2_btree_iter_advance(&(_iter)))
|
2021-02-21 11:19:34 +08:00
|
|
|
|
2021-10-22 00:05:21 +08:00
|
|
|
/* new multiple iterator interface: */
|
2021-03-20 10:54:18 +08:00
|
|
|
|
2022-03-12 07:38:24 +08:00
|
|
|
void bch2_trans_updates_to_text(struct printbuf *, struct btree_trans *);
|
2022-03-03 11:18:56 +08:00
|
|
|
void bch2_dump_trans_updates(struct btree_trans *);
|
2021-10-22 00:05:21 +08:00
|
|
|
void bch2_dump_trans_paths_updates(struct btree_trans *);
|
2022-01-04 13:33:52 +08:00
|
|
|
void __bch2_trans_init(struct btree_trans *, struct bch_fs *,
|
|
|
|
unsigned, size_t, const char *);
|
2021-10-20 03:08:00 +08:00
|
|
|
void bch2_trans_exit(struct btree_trans *);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-01-04 13:33:52 +08:00
|
|
|
#define bch2_trans_init(...) __bch2_trans_init(__VA_ARGS__, __func__)
|
|
|
|
|
2020-06-03 04:36:11 +08:00
|
|
|
void bch2_btree_trans_to_text(struct printbuf *, struct bch_fs *);
|
|
|
|
|
2019-09-08 02:16:00 +08:00
|
|
|
void bch2_fs_btree_iter_exit(struct bch_fs *);
|
|
|
|
int bch2_fs_btree_iter_init(struct bch_fs *);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
#endif /* _BCACHEFS_BTREE_ITER_H */
|