diff options
author | Mike Snitzer <snitzer@redhat.com> | 2015-03-11 23:56:38 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-03-13 08:28:33 -0600 |
commit | b94ec296403e99d5ac9a8c48332cec4118d44b94 (patch) | |
tree | 436fc728ffbc9d83c3a1876b9fc961e6906f6634 /include/linux | |
parent | b62c21b71f08b7a4bfd025616ff1da2913a82904 (diff) | |
download | op-kernel-dev-b94ec296403e99d5ac9a8c48332cec4118d44b94.zip op-kernel-dev-b94ec296403e99d5ac9a8c48332cec4118d44b94.tar.gz |
blk-mq: export blk_mq_run_hw_queues
Rename blk_mq_run_queues to blk_mq_run_hw_queues, add async argument,
and export it.
DM's suspend support must be able to run the queue without starting
stopped hw queues.
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/blk-mq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index 9a75c88..ebfe707 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -220,6 +220,7 @@ void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx); void blk_mq_stop_hw_queues(struct request_queue *q); void blk_mq_start_hw_queues(struct request_queue *q); void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async); +void blk_mq_run_hw_queues(struct request_queue *q, bool async); void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, void *priv); |