mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-18 18:48:39 -05:00
bcachefs: eytzinger_for_each() declares loop iter
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
@@ -720,7 +720,7 @@ static noinline void __build_ro_aux_tree(struct btree *b, struct bset_tree *t)
|
||||
{
|
||||
struct bkey_packed *prev = NULL, *k = btree_bkey_first(b, t);
|
||||
struct bkey_i min_key, max_key;
|
||||
unsigned j, cacheline = 1;
|
||||
unsigned cacheline = 1;
|
||||
|
||||
t->size = min(bkey_to_cacheline(b, t, btree_bkey_last(b, t)),
|
||||
bset_ro_tree_capacity(b, t));
|
||||
|
||||
@@ -156,7 +156,7 @@ static inline unsigned inorder_to_eytzinger1(unsigned i, unsigned size)
|
||||
}
|
||||
|
||||
#define eytzinger1_for_each(_i, _size) \
|
||||
for ((_i) = eytzinger1_first((_size)); \
|
||||
for (unsigned (_i) = eytzinger1_first((_size)); \
|
||||
(_i) != 0; \
|
||||
(_i) = eytzinger1_next((_i), (_size)))
|
||||
|
||||
@@ -227,7 +227,7 @@ static inline unsigned inorder_to_eytzinger0(unsigned i, unsigned size)
|
||||
}
|
||||
|
||||
#define eytzinger0_for_each(_i, _size) \
|
||||
for ((_i) = eytzinger0_first((_size)); \
|
||||
for (unsigned (_i) = eytzinger0_first((_size)); \
|
||||
(_i) != -1; \
|
||||
(_i) = eytzinger0_next((_i), (_size)))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user