Searched refs:iter_ret (Results 1 – 5 of 5) sorted by relevance
/linux-6.1.9/fs/btrfs/ |
D | xattr.c | 280 int iter_ret = 0; in btrfs_listxattr() local 299 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) { in btrfs_listxattr() 335 iter_ret = -ERANGE; in btrfs_listxattr() 350 if (iter_ret < 0) in btrfs_listxattr() 351 ret = iter_ret; in btrfs_listxattr()
|
D | send.c | 2748 int iter_ret = 0; in did_create_dir() local 2763 btrfs_for_each_slot(sctx->send_root, &key, &found_key, path, iter_ret) { in did_create_dir() 2782 if (iter_ret < 0) in did_create_dir() 2783 ret = iter_ret; in did_create_dir() 2988 int iter_ret = 0; in can_rmdir() local 3015 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) { in can_rmdir() 3053 if (iter_ret < 0) { in can_rmdir() 3054 ret = iter_ret; in can_rmdir() 3632 int iter_ret = 0; in is_ancestor() local 3653 btrfs_for_each_slot(root, &key, &key, path, iter_ret) { in is_ancestor() [all …]
|
D | dev-replace.c | 477 int iter_ret = 0; in mark_block_group_to_copy() local 528 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) { in mark_block_group_to_copy() 551 if (iter_ret < 0) in mark_block_group_to_copy() 552 ret = iter_ret; in mark_block_group_to_copy()
|
D | ctree.h | 3165 #define btrfs_for_each_slot(root, key, found_key, path, iter_ret) \ argument 3166 for (iter_ret = btrfs_search_slot(NULL, (root), (key), (path), 0, 0); \ 3167 (iter_ret) >= 0 && \ 3168 (iter_ret = btrfs_get_next_valid_item((root), (found_key), (path))) == 0; \
|
D | volumes.c | 7653 int iter_ret = 0; in btrfs_read_chunk_tree() local 7697 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) { in btrfs_read_chunk_tree() 7735 if (iter_ret < 0) { in btrfs_read_chunk_tree() 7736 ret = iter_ret; in btrfs_read_chunk_tree()
|