Message ID | 1296568490-13264-4-git-send-email-list.btrfs@jan-o-sch.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/mkfs.c b/mkfs.c index d1dd4a3..0a80d1c 100644 --- a/mkfs.c +++ b/mkfs.c @@ -430,7 +430,13 @@ int main(int ac, char **av) fprintf(stderr, "error during mkfs %d\n", ret); exit(1); } + root = open_ctree(file, 0, O_RDWR); + if (!root) { + fprintf(stderr, "ctree init failed\n"); + return -1; + } + root->fs_info->alloc_start = alloc_start; ret = make_root_dir(root); @@ -445,10 +451,6 @@ int main(int ac, char **av) goto raid_groups; btrfs_register_one_device(file); - if (!root) { - fprintf(stderr, "ctree init failed\n"); - return -1; - } zero_end = 1; while(ac-- > 0) {