Jens Axboe | 75bb462 | 2014-05-28 10:15:41 -0600 | [diff] [blame] | 1 | /* |
| 2 | * CPU <-> hardware queue mapping helpers |
| 3 | * |
| 4 | * Copyright (C) 2013-2014 Jens Axboe |
| 5 | */ |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 6 | #include <linux/kernel.h> |
| 7 | #include <linux/threads.h> |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/mm.h> |
| 10 | #include <linux/smp.h> |
| 11 | #include <linux/cpu.h> |
| 12 | |
| 13 | #include <linux/blk-mq.h> |
| 14 | #include "blk.h" |
| 15 | #include "blk-mq.h" |
| 16 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 17 | static int cpu_to_queue_index(unsigned int nr_cpus, unsigned int nr_queues, |
| 18 | const int cpu) |
| 19 | { |
Bart Van Assche | 959f5f5 | 2014-12-09 16:59:21 +0100 | [diff] [blame] | 20 | return cpu * nr_queues / nr_cpus; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | static int get_first_sibling(unsigned int cpu) |
| 24 | { |
| 25 | unsigned int ret; |
| 26 | |
Bartosz Golaszewski | 06931e6 | 2015-05-26 15:11:28 +0200 | [diff] [blame] | 27 | ret = cpumask_first(topology_sibling_cpumask(cpu)); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 28 | if (ret < nr_cpu_ids) |
| 29 | return ret; |
| 30 | |
| 31 | return cpu; |
| 32 | } |
| 33 | |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 34 | int blk_mq_map_queues(struct blk_mq_tag_set *set) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 35 | { |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 36 | unsigned int *map = set->mq_map; |
| 37 | unsigned int nr_queues = set->nr_hw_queues; |
Kyle Yan | 8e3a77b | 2017-05-18 15:31:58 -0700 | [diff] [blame] | 38 | unsigned int i, queue, first_sibling; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 39 | cpumask_var_t cpus; |
| 40 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 41 | queue = 0; |
| 42 | for_each_possible_cpu(i) { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 43 | /* |
| 44 | * Easy case - we have equal or more hardware queues. Or |
| 45 | * there are no thread siblings to take into account. Do |
| 46 | * 1:1 if enough, or sequential mapping if less. |
| 47 | */ |
Kyle Yan | 8e3a77b | 2017-05-18 15:31:58 -0700 | [diff] [blame] | 48 | if (nr_queues >= nr_cpu_ids) { |
| 49 | map[i] = cpu_to_queue_index(nr_cpu_ids, nr_queues, |
| 50 | queue); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 51 | queue++; |
| 52 | continue; |
| 53 | } |
| 54 | |
| 55 | /* |
| 56 | * Less then nr_cpus queues, and we have some number of |
| 57 | * threads per cores. Map sibling threads to the same |
| 58 | * queue. |
| 59 | */ |
| 60 | first_sibling = get_first_sibling(i); |
| 61 | if (first_sibling == i) { |
Kyle Yan | 8e3a77b | 2017-05-18 15:31:58 -0700 | [diff] [blame] | 62 | map[i] = cpu_to_queue_index(nr_cpu_ids, nr_queues, |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 63 | queue); |
| 64 | queue++; |
| 65 | } else |
| 66 | map[i] = map[first_sibling]; |
| 67 | } |
| 68 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 69 | free_cpumask_var(cpus); |
| 70 | return 0; |
| 71 | } |
| 72 | |
Jens Axboe | f14bbe7 | 2014-05-27 12:06:53 -0600 | [diff] [blame] | 73 | /* |
| 74 | * We have no quick way of doing reverse lookups. This is only used at |
| 75 | * queue init time, so runtime isn't important. |
| 76 | */ |
| 77 | int blk_mq_hw_queue_to_node(unsigned int *mq_map, unsigned int index) |
| 78 | { |
| 79 | int i; |
| 80 | |
| 81 | for_each_possible_cpu(i) { |
| 82 | if (index == mq_map[i]) |
Raghavendra K T | bffed45 | 2015-12-02 16:59:05 +0530 | [diff] [blame] | 83 | return local_memory_node(cpu_to_node(i)); |
Jens Axboe | f14bbe7 | 2014-05-27 12:06:53 -0600 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | return NUMA_NO_NODE; |
| 87 | } |