md: pass mddev to make_request functions rather than request_queue
We used to pass the personality make_request function direct to the block layer so the first argument had to be a queue. But now we have the intermediary md_make_request so it makes at lot more sense to pass a struct mddev_s. It makes it possible to have an mddev without its own queue too. Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
@@ -773,9 +773,8 @@ do_sync_io:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static int make_request(struct request_queue *q, struct bio * bio)
|
||||
static int make_request(mddev_t *mddev, struct bio * bio)
|
||||
{
|
||||
mddev_t *mddev = q->queuedata;
|
||||
conf_t *conf = mddev->private;
|
||||
mirror_info_t *mirror;
|
||||
r1bio_t *r1_bio;
|
||||
|
Reference in New Issue
Block a user