Lines Matching defs:trans
82 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
85 struct btrfs_fs_info *fs_info = trans->fs_info;
112 ret = btrfs_insert_empty_item(trans, uuid_root, path, &key,
147 int btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
150 struct btrfs_fs_info *fs_info = trans->fs_info;
176 ret = btrfs_search_slot(trans, uuid_root, &key, path, -1, 1);
214 ret = btrfs_del_item(trans, uuid_root, path);
232 struct btrfs_trans_handle *trans;
236 trans = btrfs_start_transaction(uuid_root, 1);
237 if (IS_ERR(trans)) {
238 ret = PTR_ERR(trans);
242 ret = btrfs_uuid_tree_remove(trans, uuid, type, subid);
243 btrfs_end_transaction(trans);