aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/blk-mq.h
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2018-10-24 13:16:11 -0600
committerJens Axboe <axboe@kernel.dk>2018-11-07 13:45:00 -0700
commit843477d4cc5c4bb4e346c561ecd3b9d0bd67e8c8 (patch)
tree27787556ce50efa174296b61b688cfb52d4bdb2b /include/linux/blk-mq.h
parentblk-mq: improve plug list sorting (diff)
downloadlinux-dev-843477d4cc5c4bb4e346c561ecd3b9d0bd67e8c8.tar.xz
linux-dev-843477d4cc5c4bb4e346c561ecd3b9d0bd67e8c8.zip
blk-mq: initial support for multiple queue maps
Add a queue offset to the tag map. This enables users to map iteratively, for each queue map type they support. Bump maximum number of supported maps to 2, we're now fully able to support more than 1 map. Reviewed-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/blk-mq.h')
-rw-r--r--include/linux/blk-mq.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h
index 8994c95056a8..729ce0f00433 100644
--- a/include/linux/blk-mq.h
+++ b/include/linux/blk-mq.h
@@ -78,10 +78,11 @@ struct blk_mq_hw_ctx {
struct blk_mq_queue_map {
unsigned int *mq_map;
unsigned int nr_queues;
+ unsigned int queue_offset;
};
enum {
- HCTX_MAX_TYPES = 1,
+ HCTX_MAX_TYPES = 2,
};
struct blk_mq_tag_set {