aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/raid1.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2006-01-06 03:20:52 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-06 11:34:09 -0500
commit4dbcdc751cb25ffca3a8374cbc5ab6de961cc545 (patch)
tree61d1eb6e35c0eec66e5a8610c1f57b1e6eec135c /drivers/md/raid1.c
parentd9d166c2a9d5d01af34396793950aa695883eed4 (diff)
[PATCH] md: count corrected read errors per drive
Store this total in superblock (As appropriate), and make it available to userspace via sysfs. Signed-off-by: Neil Brown <neilb@suse.de> Acked-by: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r--drivers/md/raid1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 181c9616d5f1..a06ff91f27e2 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -1265,6 +1265,7 @@ static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1265 if (r1_bio->bios[d]->bi_end_io != end_sync_read) 1265 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1266 continue; 1266 continue;
1267 rdev = conf->mirrors[d].rdev; 1267 rdev = conf->mirrors[d].rdev;
1268 atomic_add(s, &rdev->corrected_errors);
1268 if (sync_page_io(rdev->bdev, 1269 if (sync_page_io(rdev->bdev,
1269 sect + rdev->data_offset, 1270 sect + rdev->data_offset,
1270 s<<9, 1271 s<<9,
@@ -1463,6 +1464,7 @@ static void raid1d(mddev_t *mddev)
1463 d = conf->raid_disks; 1464 d = conf->raid_disks;
1464 d--; 1465 d--;
1465 rdev = conf->mirrors[d].rdev; 1466 rdev = conf->mirrors[d].rdev;
1467 atomic_add(s, &rdev->corrected_errors);
1466 if (rdev && 1468 if (rdev &&
1467 test_bit(In_sync, &rdev->flags)) { 1469 test_bit(In_sync, &rdev->flags)) {
1468 if (sync_page_io(rdev->bdev, 1470 if (sync_page_io(rdev->bdev,