diff options
author | Jens Axboe <axboe@fb.com> | 2014-11-17 20:41:57 +0300 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-11-17 20:41:57 +0300 |
commit | 7c7f2f2bc9a63f9605a16eabac59fc655dfe7c9a (patch) | |
tree | 5d3f60e0b52447eded55ebf8d649e19f0b4f7471 /include/linux/blk-mq.h | |
parent | 1a3b595a281a44be4074fe33b317a0a4854b4197 (diff) | |
download | linux-7c7f2f2bc9a63f9605a16eabac59fc655dfe7c9a.tar.xz |
blk-mq: add blk_mq_free_hctx_request()
It's silly to use blk_mq_free_request() which in turn maps the
request to the hardware queue, for places where we already know
what the hardware queue is. This saves us an extra mapping of a
hardware queue on request completion, if the caller knows this
information already.
Signed-off-by: Jens Axboe <axboe@fb.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 c3b64ec5321e..fb0a4fb3dc2b 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h @@ -169,6 +169,7 @@ void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); void blk_mq_insert_request(struct request *, bool, bool, bool); void blk_mq_run_queues(struct request_queue *q, bool async); void blk_mq_free_request(struct request *rq); +void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); bool blk_mq_can_queue(struct blk_mq_hw_ctx *); struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp, bool reserved); |