search for: 60c3f24

Displaying 1 result from an estimated 1 matches for "60c3f24".

Did you mean: 603824
2009 Nov 14
2
[PATCH] btrfs-progs: Check mount status of multidevice filesystems
...t ac, char **av) fprintf(stderr, "error during mkfs %d\n", ret); exit(1); } - root = open_ctree(file, 0, O_RDWR); + root = open_ctree(file, 0, O_RDWR, 1); root->fs_info->alloc_start = alloc_start; ret = make_root_dir(root); diff --git a/utils.c b/utils.c index 2f4c6e1..60c3f24 100644 --- a/utils.c +++ b/utils.c @@ -31,6 +31,8 @@ #include <fcntl.h> #include <unistd.h> #include <mntent.h> +#include <linux/loop.h> +#include <limits.h> #include "kerncompat.h" #include "radix-tree.h" #include "ctree.h" @@ -586,...