Lines Matching refs:path1
655 struct btrfs_path *path1; /* For searching extent root */ in build_backref_tree() local
676 path1 = btrfs_alloc_path(); in build_backref_tree()
678 if (!path1 || !path2) { in build_backref_tree()
682 path1->reada = READA_FORWARD; in build_backref_tree()
702 path1->search_commit_root = 1; in build_backref_tree()
703 path1->skip_locking = 1; in build_backref_tree()
704 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1, in build_backref_tree()
711 ASSERT(path1->slots[0]); in build_backref_tree()
713 path1->slots[0]--; in build_backref_tree()
738 eb = path1->nodes[0]; in build_backref_tree()
741 if (path1->slots[0] >= btrfs_header_nritems(eb)) { in build_backref_tree()
742 ret = btrfs_next_leaf(rc->extent_root, path1); in build_backref_tree()
749 eb = path1->nodes[0]; in build_backref_tree()
752 btrfs_item_key_to_cpu(eb, &key, path1->slots[0]); in build_backref_tree()
760 ret = find_inline_backref(eb, path1->slots[0], in build_backref_tree()
993 path1->slots[0]++; in build_backref_tree()
995 btrfs_release_path(path1); in build_backref_tree()
1113 btrfs_free_path(path1); in build_backref_tree()