diff options
author | Jens Axboe <jaxboe@fusionio.com> | 2011-09-12 06:03:37 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-09-12 06:08:31 -0400 |
commit | c20e8de27fef9f59869c81c288ad6cf28200e00c (patch) | |
tree | c1d972bfdf6b0f562169a923f2d77f422578fac1 /drivers | |
parent | 166e1f901b01872e8b70733a3f2e2c6980389cf8 (diff) |
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')
-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) | |||
1427 | struct mapped_device *md = q->queuedata; | 1427 | struct mapped_device *md = q->queuedata; |
1428 | 1428 | ||
1429 | if (dm_request_based(md)) | 1429 | if (dm_request_based(md)) |
1430 | return __make_request(q, bio); | 1430 | return blk_queue_bio(q, bio); |
1431 | 1431 | ||
1432 | return _dm_request(q, bio); | 1432 | return _dm_request(q, bio); |
1433 | } | 1433 | } |