No matter --check-data-csum is passed or not, btrfs check will always output message like "checking csum".
This message could be a little confusing, change it according to --check-data-csum option. Signed-off-by: Qu Wenruo <w...@suse.com> --- check/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/check/main.c b/check/main.c index 22a78273be15..3f4a6bcac4df 100644 --- a/check/main.c +++ b/check/main.c @@ -9845,7 +9845,11 @@ int cmd_check(int argc, char **argv) goto out; } - fprintf(stderr, "checking csums\n"); + if (check_data_csum) + fprintf(stderr, "checking csums against data\n"); + else + fprintf(stderr, + "checking csum items alone (without verifying data)\n"); ret = check_csums(root); /* * Data csum error is not fatal, and it may indicates more serious -- 2.16.2 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html