diff options
author | Pavel Begunkov | 2019-09-30 11:25:49 +0300 |
---|---|---|
committer | Jens Axboe | 2019-10-07 08:31:59 -0600 |
commit | 27a46989a82c71028f2ba15a3f2c8f30451fda33 (patch) | |
tree | a6736f5170679caad456035a11f3a17ba987a328 /block/blk-mq.h | |
parent | 7a18312c739aeace7c8ea448d39a0313d5ad5d5d (diff) |
blk-mq: Inline status checkers
blk_mq_request_completed() and blk_mq_request_started() are
short, inline it.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.h')
-rw-r--r-- | block/blk-mq.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/block/blk-mq.h b/block/blk-mq.h index 32c62c64e6c2..eaaca8fc1c28 100644 --- a/block/blk-mq.h +++ b/block/blk-mq.h @@ -128,15 +128,6 @@ extern void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx); void blk_mq_release(struct request_queue *q); -/** - * blk_mq_rq_state() - read the current MQ_RQ_* state of a request - * @rq: target request. - */ -static inline enum mq_rq_state blk_mq_rq_state(struct request *rq) -{ - return READ_ONCE(rq->state); -} - static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q, unsigned int cpu) { |