Lines Matching refs:path1
675 struct btrfs_path *path1; local
695 path1 = btrfs_alloc_path();
697 if (!path1 || !path2) {
701 path1->reada = 1;
721 path1->search_commit_root = 1;
722 path1->skip_locking = 1;
723 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
729 BUG_ON(!ret || !path1->slots[0]);
731 path1->slots[0]--;
756 eb = path1->nodes[0];
759 if (path1->slots[0] >= btrfs_header_nritems(eb)) {
760 ret = btrfs_next_leaf(rc->extent_root, path1);
767 eb = path1->nodes[0];
770 btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
778 ret = find_inline_backref(eb, path1->slots[0],
809 ref0 = btrfs_item_ptr(eb, path1->slots[0],
1000 path1->slots[0]++;
1002 btrfs_release_path(path1);
1107 btrfs_free_path(path1);