diff options
author | Bart Van Assche <bart.vanassche@wdc.com> | 2018-01-19 08:58:54 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-01-19 12:51:59 -0700 |
commit | c77ff7fd03ddca8face268c4cf093c0edf4bcf1f (patch) | |
tree | 333b693dfac8519730d85c03cef0ec9f60a72b17 /block/blk-mq.c | |
parent | 8c7a8d1c4b9c30a2be3b31a2e6af1cefd45574eb (diff) | |
download | linux-stable-c77ff7fd03ddca8face268c4cf093c0edf4bcf1f.tar.gz linux-stable-c77ff7fd03ddca8face268c4cf093c0edf4bcf1f.tar.bz2 linux-stable-c77ff7fd03ddca8face268c4cf093c0edf4bcf1f.zip |
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-mq.c')
-rw-r--r-- | block/blk-mq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index 74a4f237ba91..0fc6c95e5a29 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -1785,7 +1785,7 @@ static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx, * RCU or SRCU read lock is needed before checking quiesced flag. * * When queue is stopped or quiesced, ignore 'bypass_insert' from - * blk_mq_request_direct_issue(), and return BLK_STS_OK to caller, + * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller, * and avoid driver to try to dispatch again. */ if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) { @@ -1833,7 +1833,7 @@ static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx, hctx_unlock(hctx, srcu_idx); } -blk_status_t blk_mq_request_direct_issue(struct request *rq) +blk_status_t blk_mq_request_issue_directly(struct request *rq) { blk_status_t ret; int srcu_idx; |