commit | b25c94c580c27bb6cff1e2f478746e77119215ad | [log] [tgz] |
---|---|---|
author | Zhao Lei <zhaolei@cn.fujitsu.com> | Tue Jan 20 15:11:35 2015 +0800 |
committer | Chris Mason <clm@fb.com> | Wed Jan 21 18:06:48 2015 -0800 |
tree | c2e72e3bb442e60bf2f604efeecaf8b34e27afe6 | |
parent | 6e9606d2a2dce098c1739fb3cd82a1c34fd73d3a [diff] |
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: Zhao Lei <zhaolei@cn.fujitsu.com> Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> Signed-off-by: Chris Mason <clm@fb.com>