]> Pileus Git - ~andy/linux/blobdiff - drivers/md/raid1.c
md/raid1: perform bad-block tests for WriteMostly devices too.
[~andy/linux] / drivers / md / raid1.c
index cc24f0cb7ee31ef420e4f8c86f6cb1b09733ec36..a368db2431a596020a98a3e64f67685ccef9c6cc 100644 (file)
@@ -531,8 +531,17 @@ static int read_balance(struct r1conf *conf, struct r1bio *r1_bio, int *max_sect
                if (test_bit(WriteMostly, &rdev->flags)) {
                        /* Don't balance among write-mostly, just
                         * use the first as a last resort */
-                       if (best_disk < 0)
+                       if (best_disk < 0) {
+                               if (is_badblock(rdev, this_sector, sectors,
+                                               &first_bad, &bad_sectors)) {
+                                       if (first_bad < this_sector)
+                                               /* Cannot use this */
+                                               continue;
+                                       best_good_sectors = first_bad - this_sector;
+                               } else
+                                       best_good_sectors = sectors;
                                best_disk = disk;
+                       }
                        continue;
                }
                /* This is a reasonable device to use.  It might