Lines Matching refs:path
25 struct btrfs_path *path; in btrfs_insert_orphan_item() local
33 path = btrfs_alloc_path(); in btrfs_insert_orphan_item()
34 if (!path) in btrfs_insert_orphan_item()
37 ret = btrfs_insert_empty_item(trans, root, path, &key, 0); in btrfs_insert_orphan_item()
39 btrfs_free_path(path); in btrfs_insert_orphan_item()
46 struct btrfs_path *path; in btrfs_del_orphan_item() local
54 path = btrfs_alloc_path(); in btrfs_del_orphan_item()
55 if (!path) in btrfs_del_orphan_item()
58 ret = btrfs_search_slot(trans, root, &key, path, -1, 1); in btrfs_del_orphan_item()
62 ret = btrfs_del_item(trans, root, path); in btrfs_del_orphan_item()
65 btrfs_free_path(path); in btrfs_del_orphan_item()