aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/multipath.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-04-01 00:02:13 -0400
committerNeilBrown <neilb@suse.de>2010-05-18 01:27:55 -0400
commit21a52c6d05c15f862797736393915bfa8cd40ee9 (patch)
tree44ffb633d209457979177a52132761a368fcb976 /drivers/md/multipath.c
parentcca9cf90c504d98644ace52c474770970729f0eb (diff)
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>
Diffstat (limited to 'drivers/md/multipath.c')
-rw-r--r--drivers/md/multipath.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/md/multipath.c b/drivers/md/multipath.c
index 5b4e2918663a..50bf8e6f8c7b 100644
--- a/drivers/md/multipath.c
+++ b/drivers/md/multipath.c
@@ -135,9 +135,8 @@ static void multipath_unplug(struct request_queue *q)
135} 135}
136 136
137 137
138static int multipath_make_request (struct request_queue *q, struct bio * bio) 138static int multipath_make_request(mddev_t *mddev, struct bio * bio)
139{ 139{
140 mddev_t *mddev = q->queuedata;
141 multipath_conf_t *conf = mddev->private; 140 multipath_conf_t *conf = mddev->private;
142 struct multipath_bh * mp_bh; 141 struct multipath_bh * mp_bh;
143 struct multipath_info *multipath; 142 struct multipath_info *multipath;