aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhao Lei <[email protected]>2015-08-24 13:10:18 +0000
committerChris Mason <[email protected]>2015-11-11 03:27:03 +0000
commit772d233f5dec86e38a96e58cc995e7b04ab4ec68 (patch)
tree05cd8e310d7d2abeb77faa1314d67fa188627f17
parentbtrfs: scrub: setup all fields for sblock_to_check (diff)
downloadkernel-772d233f5dec86e38a96e58cc995e7b04ab4ec68.tar.gz
kernel-772d233f5dec86e38a96e58cc995e7b04ab4ec68.zip
btrfs: Reset sblock->xxx_error stats before calling scrub_recheck_block_checksum
We should reset sblock->xxx_error stats before calling scrub_recheck_block_checksum(). Current code run correctly because all sblock are allocated by k[cz]alloc(), and the error stats are not got changed. Signed-off-by: Zhao Lei <[email protected]> Signed-off-by: Chris Mason <[email protected]>
-rw-r--r--fs/btrfs/scrub.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
index 12ed8a77f11c..95dc60a45fcb 100644
--- a/fs/btrfs/scrub.c
+++ b/fs/btrfs/scrub.c
@@ -1495,6 +1495,7 @@ static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
sblock->no_io_error_seen = 1;
sblock->header_error = 0;
sblock->checksum_error = 0;
+ sblock->generation_error = 0;
for (page_num = 0; page_num < sblock->page_count; page_num++) {
struct bio *bio;
@@ -2203,6 +2204,9 @@ static void scrub_missing_raid56_worker(struct btrfs_work *work)
logical = sblock->pagev[0]->logical;
dev = sblock->pagev[0]->dev;
+ sblock->header_error = 0;
+ sblock->checksum_error = 0;
+ sblock->generation_error = 0;
if (sblock->no_io_error_seen) {
scrub_recheck_block_checksum(fs_info, sblock, is_metadata,
have_csum, csum, generation,