diff options
author | Christoph Hellwig <hch@lst.de> | 2021-11-23 19:53:05 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-11-29 14:38:44 +0100 |
commit | 0281ed3cf44d2a7061ec3c1680e1f86e55ad57b9 (patch) | |
tree | a807951a3b5c1a339a5d91dd0dc47605c6c80392 /block/blk.h | |
parent | blk_mq: remove repeated includes (diff) | |
download | linux-0281ed3cf44d2a7061ec3c1680e1f86e55ad57b9.tar.xz linux-0281ed3cf44d2a7061ec3c1680e1f86e55ad57b9.zip |
block: move blk_get_flush_queue to blk-flush.c
blk_get_flush_queue is only used in blk-flush.c, so move it there.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20211123185312.1432157-2-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk.h')
-rw-r--r-- | block/blk.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/block/blk.h b/block/blk.h index 5d4d08df772b..1346085d89ce 100644 --- a/block/blk.h +++ b/block/blk.h @@ -35,12 +35,6 @@ extern struct kmem_cache *blk_requestq_cachep; extern struct kobj_type blk_queue_ktype; extern struct ida blk_queue_ida; -static inline struct blk_flush_queue * -blk_get_flush_queue(struct request_queue *q, struct blk_mq_ctx *ctx) -{ - return blk_mq_map_queue(q, REQ_OP_FLUSH, ctx)->fq; -} - static inline void __blk_get_queue(struct request_queue *q) { kobject_get(&q->kobj); |