mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 10:59:18 -04:00
bcachefs: kill trans_for_each_path_from()
dead code Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
@@ -74,14 +74,11 @@ __trans_next_path(struct btree_trans *trans, unsigned idx)
|
||||
return &trans->paths[idx];
|
||||
}
|
||||
|
||||
#define trans_for_each_path_from(_trans, _path, _start) \
|
||||
for (_path = __trans_next_path((_trans), _start); \
|
||||
#define trans_for_each_path(_trans, _path) \
|
||||
for (_path = __trans_next_path((_trans), 1); \
|
||||
(_path); \
|
||||
_path = __trans_next_path((_trans), (_path)->idx + 1))
|
||||
|
||||
#define trans_for_each_path(_trans, _path) \
|
||||
trans_for_each_path_from(_trans, _path, 1)
|
||||
|
||||
static inline struct btree_path *
|
||||
__trans_next_path_safe(struct btree_trans *trans, unsigned *idx)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user