diff options
author | Jens Axboe <axboe@fb.com> | 2016-12-08 23:19:30 +0300 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-12-09 19:03:02 +0300 |
commit | ae911c5e796d51cb2d1ed3a55e73b9cc88d176cf (patch) | |
tree | 8d13dbeff76c57c2f61a19a13e64dbda40c04b9c /include/linux/blk-mq.h | |
parent | f9d03f96b988002027d4b28ea1b7a24729a4c9b5 (diff) | |
download | linux-ae911c5e796d51cb2d1ed3a55e73b9cc88d176cf.tar.xz |
blk-mq: add blk_mq_start_stopped_hw_queue()
We have a variant for all hardware queues, but not one for a single
hardware queue.
Signed-off-by: Jens Axboe <axboe@fb.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Diffstat (limited to 'include/linux/blk-mq.h')
-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 35a0af5ede6d..87e404aae267 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -231,6 +231,7 @@ void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx); 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_queue(struct blk_mq_hw_ctx *hctx, bool async); 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); |