diff options
author | Jens Axboe <jaxboe@fusionio.com> | 2011-09-12 14:03:37 +0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-09-12 14:08:31 +0400 |
commit | c20e8de27fef9f59869c81c288ad6cf28200e00c (patch) | |
tree | c1d972bfdf6b0f562169a923f2d77f422578fac1 /drivers/md/dm.c | |
parent | 166e1f901b01872e8b70733a3f2e2c6980389cf8 (diff) | |
download | linux-c20e8de27fef9f59869c81c288ad6cf28200e00c.tar.xz |
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.c | 2 |
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); } |