diff options
Diffstat (limited to 'drivers/md/faulty.c')
| -rw-r--r-- | drivers/md/faulty.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/md/faulty.c b/drivers/md/faulty.c index 5e7dc772f5d..3193aefe982 100644 --- a/drivers/md/faulty.c +++ b/drivers/md/faulty.c @@ -185,8 +185,7 @@ static void make_request(struct mddev *mddev, struct bio *bio)  			return;  		} -		if (check_sector(conf, bio->bi_sector, bio->bi_sector+(bio->bi_size>>9), -				 WRITE)) +		if (check_sector(conf, bio->bi_sector, bio_end_sector(bio), WRITE))  			failit = 1;  		if (check_mode(conf, WritePersistent)) {  			add_sector(conf, bio->bi_sector, WritePersistent); @@ -196,8 +195,7 @@ static void make_request(struct mddev *mddev, struct bio *bio)  			failit = 1;  	} else {  		/* read request */ -		if (check_sector(conf, bio->bi_sector, bio->bi_sector + (bio->bi_size>>9), -				 READ)) +		if (check_sector(conf, bio->bi_sector, bio_end_sector(bio), READ))  			failit = 1;  		if (check_mode(conf, ReadTransient))  			failit = 1;  |