summaryrefslogtreecommitdiffstats
path: root/block/blk-core.c
diff options
context:
space:
mode:
authorBart Van Assche <bart.vanassche@wdc.com>2018-01-19 08:58:54 -0800
committerJens Axboe <axboe@kernel.dk>2018-01-19 12:51:59 -0700
commitc77ff7fd03ddca8face268c4cf093c0edf4bcf1f (patch)
tree333b693dfac8519730d85c03cef0ec9f60a72b17 /block/blk-core.c
parent8c7a8d1c4b9c30a2be3b31a2e6af1cefd45574eb (diff)
downloadlinux-0-day-c77ff7fd03ddca8face268c4cf093c0edf4bcf1f.tar.gz
linux-0-day-c77ff7fd03ddca8face268c4cf093c0edf4bcf1f.tar.xz
blk-mq: Rename blk_mq_request_direct_issue() into blk_mq_request_issue_directly()
Most blk-mq functions have a name that follows the pattern blk_mq_${action}. However, the function name blk_mq_request_direct_issue is an exception. Hence rename this function. This patch does not change any functionality. Reviewed-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r--block/blk-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index c21a16e9fdf96..1645a1e54a37b 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -2520,7 +2520,7 @@ blk_status_t blk_insert_cloned_request(struct request_queue *q, struct request *
* bypass a potential scheduler on the bottom device for
* insert.
*/
- return blk_mq_request_direct_issue(rq);
+ return blk_mq_request_issue_directly(rq);
}
spin_lock_irqsave(q->queue_lock, flags);