1 #include <linux/kernel.h>
2 #include <linux/threads.h>
3 #include <linux/module.h>
8 #include <linux/blk-mq.h>
12 static int cpu_to_queue_index(unsigned int nr_cpus
, unsigned int nr_queues
,
15 return cpu
/ ((nr_cpus
+ nr_queues
- 1) / nr_queues
);
18 static int get_first_sibling(unsigned int cpu
)
22 ret
= cpumask_first(topology_thread_cpumask(cpu
));
29 int blk_mq_update_queue_map(unsigned int *map
, unsigned int nr_queues
)
31 unsigned int i
, nr_cpus
, nr_uniq_cpus
, queue
, first_sibling
;
34 if (!alloc_cpumask_var(&cpus
, GFP_ATOMIC
))
38 nr_cpus
= nr_uniq_cpus
= 0;
39 for_each_online_cpu(i
) {
41 first_sibling
= get_first_sibling(i
);
42 if (!cpumask_test_cpu(first_sibling
, cpus
))
44 cpumask_set_cpu(i
, cpus
);
48 for_each_possible_cpu(i
) {
55 * Easy case - we have equal or more hardware queues. Or
56 * there are no thread siblings to take into account. Do
57 * 1:1 if enough, or sequential mapping if less.
59 if (nr_queues
>= nr_cpus
|| nr_cpus
== nr_uniq_cpus
) {
60 map
[i
] = cpu_to_queue_index(nr_cpus
, nr_queues
, queue
);
66 * Less then nr_cpus queues, and we have some number of
67 * threads per cores. Map sibling threads to the same
70 first_sibling
= get_first_sibling(i
);
71 if (first_sibling
== i
) {
72 map
[i
] = cpu_to_queue_index(nr_uniq_cpus
, nr_queues
,
76 map
[i
] = map
[first_sibling
];
79 free_cpumask_var(cpus
);
83 unsigned int *blk_mq_make_queue_map(struct blk_mq_reg
*reg
)
87 /* If cpus are offline, map them to first hctx */
88 map
= kzalloc_node(sizeof(*map
) * num_possible_cpus(), GFP_KERNEL
,
93 if (!blk_mq_update_queue_map(map
, reg
->nr_hw_queues
))