Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b25c94c5 authored by Zhao Lei's avatar Zhao Lei Committed by Chris Mason
Browse files

Btrfs: Fix a jump typo of nodatasum_case to avoid wrong WARN_ON()



if (sctx->is_dev_replace && !is_metadata && !have_csum) {
    ...
    goto nodatasum_case;
}
...
nodatasum_case:
    WARN_ON(sctx->is_dev_replace);

In above code, nodatasum_case marker should be moved after
WARN_ON().

Signed-off-by: default avatarZhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: default avatarMiao Xie <miaox@cn.fujitsu.com>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 6e9606d2
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -1036,9 +1036,10 @@ static int scrub_handle_errored_block(struct scrub_block *sblock_to_check)
	if (!is_metadata && !have_csum) {
	if (!is_metadata && !have_csum) {
		struct scrub_fixup_nodatasum *fixup_nodatasum;
		struct scrub_fixup_nodatasum *fixup_nodatasum;


nodatasum_case:
		WARN_ON(sctx->is_dev_replace);
		WARN_ON(sctx->is_dev_replace);


nodatasum_case:

		/*
		/*
		 * !is_metadata and !have_csum, this means that the data
		 * !is_metadata and !have_csum, this means that the data
		 * might not be COW'ed, that it might be modified
		 * might not be COW'ed, that it might be modified