diff options
author | Christoph Hellwig <hch@lst.de> | 2015-09-27 21:01:51 +0200 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-10-01 10:10:57 +0200 |
commit | 0bf6cd5b9531bcc29c0a5e504b6ce2984c6fd8d8 (patch) | |
tree | bf6d257b11c79cda7f8f44e3fd8d9c535143fdfd /include | |
parent | f4829a9b7a61e159367350008a608b062c4f6840 (diff) | |
download | linux-0bf6cd5b9531bcc29c0a5e504b6ce2984c6fd8d8.tar.bz2 |
blk-mq: factor out a helper to iterate all tags for a request_queue
And replace the blk_mq_tag_busy_iter with it - the driver use has been
replaced with a new helper a while ago, and internal to the block we
only need the new version.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/blk-mq.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index c1b5c867ff07..5e7d43ab61c0 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -223,8 +223,6 @@ 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); void blk_mq_all_tag_busy_iter(struct blk_mq_tags *tags, busy_tag_iter_fn *fn, void *priv); void blk_mq_freeze_queue(struct request_queue *q); |