aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm.c
diff options
context:
space:
mode:
authorJens Axboe <jaxboe@fusionio.com>2011-09-12 12:03:37 +0200
committerJens Axboe <jaxboe@fusionio.com>2011-09-12 12:08:31 +0200
commitc20e8de27fef9f59869c81c288ad6cf28200e00c (patch)
treec1d972bfdf6b0f562169a923f2d77f422578fac1 /drivers/md/dm.c
parentblock: export __make_request (diff)
downloadlinux-dev-c20e8de27fef9f59869c81c288ad6cf28200e00c.tar.xz
linux-dev-c20e8de27fef9f59869c81c288ad6cf28200e00c.zip
block: rename __make_request() to blk_queue_bio()
Now that it's exported, lets put it in a more sane namespace. Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'drivers/md/dm.c')
-rw-r--r--drivers/md/dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index d8d7b8d9dd28..78b20868bcbc 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -1427,7 +1427,7 @@ static int dm_request(struct request_queue *q, struct bio *bio)
struct mapped_device *md = q->queuedata;
if (dm_request_based(md))
- return __make_request(q, bio);
+ return blk_queue_bio(q, bio);
return _dm_request(q, bio);
}