Searched refs:iter_ret (Results 1 - 6 of 6) sorted by relevance

/linux-master/fs/btrfs/
H A Dxattr.c284 int iter_ret = 0; local
303 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) {
339 iter_ret = -ERANGE;
354 if (iter_ret < 0)
355 ret = iter_ret;
H A Dctree.h669 * @iter_ret: Contains the value returned from btrfs_search_slot or
672 * The @iter_ret is an output variable that will contain the return value of
677 * It's recommended to use a separate variable for iter_ret and then use it to
681 #define btrfs_for_each_slot(root, key, found_key, path, iter_ret) \
682 for (iter_ret = btrfs_search_slot(NULL, (root), (key), (path), 0, 0); \
683 (iter_ret) >= 0 && \
684 (iter_ret = btrfs_get_next_valid_item((root), (found_key), (path))) == 0; \
H A Ddev-replace.c462 int iter_ret = 0; local
513 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) {
536 if (iter_ret < 0)
537 ret = iter_ret;
H A Dsend.c2954 int iter_ret = 0; local
2972 btrfs_for_each_slot(sctx->send_root, &key, &found_key, path, iter_ret) {
2992 if (iter_ret < 0)
2993 ret = iter_ret;
3203 int iter_ret = 0; local
3277 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) {
3304 if (iter_ret < 0) {
3305 ret = iter_ret;
3897 int iter_ret = 0; local
3918 btrfs_for_each_slot(root, &key, &key, path, iter_ret) {
4825 int iter_ret = 0; local
5129 int iter_ret = 0; local
6573 int iter_ret = 0; local
[all...]
H A Dtree-log.c5461 int iter_ret; local
5468 btrfs_for_each_slot(root->log_root, &key, &found_key, path, iter_ret) {
5526 if (iter_ret < 0) {
5527 ret = iter_ret;
5529 } else if (iter_ret > 0) {
H A Dvolumes.c7532 int iter_ret = 0; local
7576 btrfs_for_each_slot(root, &key, &found_key, path, iter_ret) {
7614 if (iter_ret < 0) {
7615 ret = iter_ret;

Completed in 225 milliseconds