Lines Matching refs:path2
685 struct btrfs_path *path2; local
706 path2 = btrfs_alloc_path();
707 if (!path1 || !path2) {
712 path2->reada = 2;
911 path2->search_commit_root = 1;
912 path2->skip_locking = 1;
913 path2->lowest_level = level;
914 ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
915 path2->lowest_level = 0;
920 if (ret > 0 && path2->slots[level] > 0)
921 path2->slots[level]--;
923 eb = path2->nodes[level];
924 WARN_ON(btrfs_node_blockptr(eb, path2->slots[level]) !=
930 if (!path2->nodes[level]) {
946 eb = path2->nodes[level];
1003 btrfs_release_path(path2);
1135 btrfs_free_path(path2);