|
@@ -3753,9 +3753,8 @@ static int bio_fits_rdev(struct bio *bi)
|
|
|
}
|
|
|
|
|
|
|
|
|
-static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
|
|
|
+static int chunk_aligned_read(mddev_t *mddev, struct bio * raid_bio)
|
|
|
{
|
|
|
- mddev_t *mddev = q->queuedata;
|
|
|
raid5_conf_t *conf = mddev->private;
|
|
|
int dd_idx;
|
|
|
struct bio* align_bi;
|
|
@@ -3870,9 +3869,8 @@ static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
|
|
|
return sh;
|
|
|
}
|
|
|
|
|
|
-static int make_request(struct request_queue *q, struct bio * bi)
|
|
|
+static int make_request(mddev_t *mddev, struct bio * bi)
|
|
|
{
|
|
|
- mddev_t *mddev = q->queuedata;
|
|
|
raid5_conf_t *conf = mddev->private;
|
|
|
int dd_idx;
|
|
|
sector_t new_sector;
|
|
@@ -3896,7 +3894,7 @@ static int make_request(struct request_queue *q, struct bio * bi)
|
|
|
|
|
|
if (rw == READ &&
|
|
|
mddev->reshape_position == MaxSector &&
|
|
|
- chunk_aligned_read(q,bi))
|
|
|
+ chunk_aligned_read(mddev,bi))
|
|
|
return 0;
|
|
|
|
|
|
logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
|