diff mbox

[2/5] btrfs-progs: check: call repair_root_items() before any repair

Message ID 20170927063440.25961-3-suy.fnst@cn.fujitsu.com (mailing list archive)
State New, archived
Headers show

Commit Message

Su Yue Sept. 27, 2017, 6:34 a.m. UTC
The Annotation of repair_root_items():
"This must be run before any other repair code - not doing it so,
makes other repair code delete or modify backrefs in the extent tree
for example, which will result in an inconsistent fs after repairing
the root items."

However, the rule was broken by commit
"6896ab801d47419fa06d886bae4bf31d0287ced1" which intends to fix
failure of test-fsck/013.
The correct way is to skip calling repair_root_item() when
init_extent_tree is nonzero.

Now put repair_root_items() before do_check_chunks_and_extents() and
not call repair_root_items() if do init_extent_tree.
Then test-fsck/013 works well.

Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
---
 cmds-check.c | 43 +++++++++++++++++++++++--------------------
 1 file changed, 23 insertions(+), 20 deletions(-)

Comments

Qu Wenruo Sept. 27, 2017, 7:24 a.m. UTC | #1
On 2017年09月27日 14:34, Su Yue wrote:
> The Annotation of repair_root_items():
> "This must be run before any other repair code - not doing it so,
> makes other repair code delete or modify backrefs in the extent tree
> for example, which will result in an inconsistent fs after repairing
> the root items."
> 
> However, the rule was broken by commit
> "6896ab801d47419fa06d886bae4bf31d0287ced1" which intends to fix

Wrong commit.

commit 6896ab801d47419fa06d886bae4bf31d0287ced1
Author: Qu Wenruo <quwenruo.btrfs@gmx.com>
Date:   Mon Sep 11 15:36:12 2017 +0900

     btrfs-progs: docs: mkfs: Add extra condition for rootdir option

This commit has no way affect btrfs check.

Please use first 12 characters and one line summary to describe the commit.
And of course, use correct commit.

Thanks,
Qu


> failure of test-fsck/013.
> The correct way is to skip calling repair_root_item() when
> init_extent_tree is nonzero.
> 
> Now put repair_root_items() before do_check_chunks_and_extents() and
> not call repair_root_items() if do init_extent_tree.
> Then test-fsck/013 works well.
> 
> Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com>
> ---
>   cmds-check.c | 43 +++++++++++++++++++++++--------------------
>   1 file changed, 23 insertions(+), 20 deletions(-)
> 
> diff --git a/cmds-check.c b/cmds-check.c
> index 93b47194..3e2f9faa 100644
> --- a/cmds-check.c
> +++ b/cmds-check.c
> @@ -14644,32 +14644,35 @@ int cmd_check(int argc, char **argv)
>   		goto close_out;
>   	}
>   
> +	if (!init_extent_tree) {
> +		ret = repair_root_items(info);
> +		err |= !!ret;
> +		if (ret < 0) {
> +			error("failed to repair root items: %s",
> +			      strerror(-ret));
> +			goto close_out;
> +		}
> +		if (repair) {
> +			fprintf(stderr, "Fixed %d roots.\n", ret);
> +			ret = 0;
> +		} else if (ret > 0) {
> +			fprintf(stderr,
> +				"Found %d roots with an outdated root item.\n",
> +				ret);
> +			fprintf(stderr,
> +				"Please run a filesystem check with the option --repair to fix them.\n");
> +			ret = 1;
> +			err |= !!ret;
> +			goto close_out;
> +		}
> +	}
> +
>   	ret = do_check_chunks_and_extents(info);
>   	err |= !!ret;
>   	if (ret)
>   		error(
>   		"errors found in extent allocation tree or chunk allocation");
>   
> -	ret = repair_root_items(info);
> -	err |= !!ret;
> -	if (ret < 0) {
> -		error("failed to repair root items: %s", strerror(-ret));
> -		goto close_out;
> -	}
> -	if (repair) {
> -		fprintf(stderr, "Fixed %d roots.\n", ret);
> -		ret = 0;
> -	} else if (ret > 0) {
> -		fprintf(stderr,
> -		       "Found %d roots with an outdated root item.\n",
> -		       ret);
> -		fprintf(stderr,
> -			"Please run a filesystem check with the option --repair to fix them.\n");
> -		ret = 1;
> -		err |= !!ret;
> -		goto close_out;
> -	}
> -
>   	if (!ctx.progress_enabled) {
>   		if (btrfs_fs_compat_ro(info, FREE_SPACE_TREE))
>   			fprintf(stderr, "checking free space tree\n");
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/cmds-check.c b/cmds-check.c
index 93b47194..3e2f9faa 100644
--- a/cmds-check.c
+++ b/cmds-check.c
@@ -14644,32 +14644,35 @@  int cmd_check(int argc, char **argv)
 		goto close_out;
 	}
 
+	if (!init_extent_tree) {
+		ret = repair_root_items(info);
+		err |= !!ret;
+		if (ret < 0) {
+			error("failed to repair root items: %s",
+			      strerror(-ret));
+			goto close_out;
+		}
+		if (repair) {
+			fprintf(stderr, "Fixed %d roots.\n", ret);
+			ret = 0;
+		} else if (ret > 0) {
+			fprintf(stderr,
+				"Found %d roots with an outdated root item.\n",
+				ret);
+			fprintf(stderr,
+				"Please run a filesystem check with the option --repair to fix them.\n");
+			ret = 1;
+			err |= !!ret;
+			goto close_out;
+		}
+	}
+
 	ret = do_check_chunks_and_extents(info);
 	err |= !!ret;
 	if (ret)
 		error(
 		"errors found in extent allocation tree or chunk allocation");
 
-	ret = repair_root_items(info);
-	err |= !!ret;
-	if (ret < 0) {
-		error("failed to repair root items: %s", strerror(-ret));
-		goto close_out;
-	}
-	if (repair) {
-		fprintf(stderr, "Fixed %d roots.\n", ret);
-		ret = 0;
-	} else if (ret > 0) {
-		fprintf(stderr,
-		       "Found %d roots with an outdated root item.\n",
-		       ret);
-		fprintf(stderr,
-			"Please run a filesystem check with the option --repair to fix them.\n");
-		ret = 1;
-		err |= !!ret;
-		goto close_out;
-	}
-
 	if (!ctx.progress_enabled) {
 		if (btrfs_fs_compat_ro(info, FREE_SPACE_TREE))
 			fprintf(stderr, "checking free space tree\n");