summaryrefslogtreecommitdiff
path: root/block/blk-mq.h
diff options
context:
space:
mode:
authorImran Khan <kimran@codeaurora.org>2016-09-15 16:44:02 +0530
committerImran Khan <kimran@codeaurora.org>2016-09-21 22:46:40 +0530
commit6b520c7ac72604b16eb68274d23efe4ff49444f4 (patch)
tree2af30d8fba93f1ef7750cdb0f00eaac8284025be /block/blk-mq.h
parent4b91c1a0f78b6b4071e66c9a5879a784cedd6693 (diff)
blk-mq: use static mapping
blk-mq layer performs a remapping between s/w and h/w contexts and also between h/w contexts and CPUs, whenever a CPU hotplug event happens. This remapping has to wait for queue freezing which may take tens of miliseconds, resulting in a high latency in CPU hotplug path. This patch makes the above mentioned mappings static so that we can avoid remapping when CPU hotplug event happens and this results in improved CPU hotplug latency of up to 90 percent for CPU up path and of up to 50 percent for CPU down path. Change-Id: Idf38cb6c4e78c91fda3c86608c6d0441f01ab435 Signed-off-by: Imran Khan <kimran@codeaurora.org>
Diffstat (limited to 'block/blk-mq.h')
-rw-r--r--block/blk-mq.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/block/blk-mq.h b/block/blk-mq.h
index 713820b47b31..7fd11bcaa409 100644
--- a/block/blk-mq.h
+++ b/block/blk-mq.h
@@ -48,8 +48,6 @@ void blk_mq_disable_hotplug(void);
* CPU -> queue mappings
*/
extern unsigned int *blk_mq_make_queue_map(struct blk_mq_tag_set *set);
-extern int blk_mq_update_queue_map(unsigned int *map, unsigned int nr_queues,
- const struct cpumask *online_mask);
extern int blk_mq_hw_queue_to_node(unsigned int *map, unsigned int);
/*