Btrfs-progs: fsck: only allow partial opening under repair mode
authorWang Shilong <wangsl.fnst@cn.fujitsu.com>
Thu, 29 May 2014 09:59:56 +0000 (17:59 +0800)
committerDavid Sterba <dsterba@suse.cz>
Fri, 10 Oct 2014 16:11:32 +0000 (18:11 +0200)
The reason that we allow partial opening is that sometimes,
we may have some corrupted trees.(for example extent tree), for
fsck repair case, the broken tree may be rebuilt later.

So if users only want to do check but not repair anything, this
patch will make fsck return failure as soon as possible and
tell users that some critial roots have been corrupted.

Signed-off-by: Wang Shilong <wangsl.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
cmds-check.c

index a1d5a55..7c5cfbb 100644 (file)
@@ -6821,8 +6821,7 @@ int cmd_check(int argc, char **argv)
        int option_index = 0;
        int init_csum_tree = 0;
        int qgroup_report = 0;
-       enum btrfs_open_ctree_flags ctree_flags =
-               OPEN_CTREE_PARTIAL | OPEN_CTREE_EXCLUSIVE;
+       enum btrfs_open_ctree_flags ctree_flags = OPEN_CTREE_EXCLUSIVE;
 
        while(1) {
                int c;
@@ -6892,6 +6891,10 @@ int cmd_check(int argc, char **argv)
                goto err_out;
        }
 
+       /* only allow partial opening under repair mode */
+       if (repair)
+               ctree_flags |= OPEN_CTREE_PARTIAL;
+
        info = open_ctree_fs_info(argv[optind], bytenr, 0, ctree_flags);
        if (!info) {
                fprintf(stderr, "Couldn't open file system\n");