diff options
author | Wei Fang <fangwei1@huawei.com> | 2016-03-21 07:18:32 -0400 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2016-03-31 13:04:17 -0400 |
commit | 816b0acf3deb6d6be5d0519b286fdd4bafade905 (patch) | |
tree | 0b24951e8a0534dfc786a0fdd6faf1fd1459646e /drivers/md/raid1.c | |
parent | c05c2ec96bb8b7310da1055c7b9d786a3ec6dc0c (diff) |
md:raid1: fix a dead loop when read from a WriteMostly disk
If first_bad == this_sector when we get the WriteMostly disk
in read_balance(), valid disk will be returned with zero
max_sectors. It'll lead to a dead loop in make_request(), and
OOM will happen because of endless allocation of struct bio.
Since we can't get data from this disk in this case, so
continue for another disk.
Signed-off-by: Wei Fang <fangwei1@huawei.com>
Signed-off-by: Shaohua Li <shli@fb.com>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 39fb21e048e6..a7f2b9c9f8a0 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -570,7 +570,7 @@ static int read_balance(struct r1conf *conf, struct r1bio *r1_bio, int *max_sect | |||
570 | if (best_dist_disk < 0) { | 570 | if (best_dist_disk < 0) { |
571 | if (is_badblock(rdev, this_sector, sectors, | 571 | if (is_badblock(rdev, this_sector, sectors, |
572 | &first_bad, &bad_sectors)) { | 572 | &first_bad, &bad_sectors)) { |
573 | if (first_bad < this_sector) | 573 | if (first_bad <= this_sector) |
574 | /* Cannot use this */ | 574 | /* Cannot use this */ |
575 | continue; | 575 | continue; |
576 | best_good_sectors = first_bad - this_sector; | 576 | best_good_sectors = first_bad - this_sector; |