return ret;
}
-static int make_root_dir(struct btrfs_root *root, int mixed,
- struct mkfs_allocation *allocation)
+static int make_root_dir(struct btrfs_trans_handle *trans, struct btrfs_root *root,
+ int mixed, struct mkfs_allocation *allocation)
{
- struct btrfs_trans_handle *trans;
- struct btrfs_key location;
u64 chunk_start = 0;
u64 chunk_size = 0;
int ret;
- trans = btrfs_start_transaction(root, 1);
- BUG_ON(!trans);
-
if (!mixed) {
ret = btrfs_alloc_chunk(trans, root->fs_info->extent_root,
&chunk_start, &chunk_size,
if (ret)
goto err;
- btrfs_commit_transaction(trans, root);
err:
return ret;
}
exit(1);
}
- ret = make_root_dir(root, mixed, &allocation);
+ trans = btrfs_start_transaction(root, 1);
+ BUG_ON(!trans);
+
+ ret = make_root_dir(trans, root, mixed, &allocation);
if (ret) {
fprintf(stderr, "failed to setup the root directory\n");
exit(1);
}
+ btrfs_commit_transaction(trans, root);
+
trans = btrfs_start_transaction(root, 1);
if (is_block_device(file))