blob: df02fafef21437ac0d0a73bfb0e7a62614ad97c0 [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
2 * CPU <-> hardware queue mapping helpers
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 */
Jens Axboe320ae512013-10-24 09:20:05 +01006#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 Axboe320ae512013-10-24 09:20:05 +010017static int cpu_to_queue_index(unsigned int nr_cpus, unsigned int nr_queues,
18 const int cpu)
19{
Bart Van Assche959f5f52014-12-09 16:59:21 +010020 return cpu * nr_queues / nr_cpus;
Jens Axboe320ae512013-10-24 09:20:05 +010021}
22
23static int get_first_sibling(unsigned int cpu)
24{
25 unsigned int ret;
26
Bartosz Golaszewski06931e62015-05-26 15:11:28 +020027 ret = cpumask_first(topology_sibling_cpumask(cpu));
Jens Axboe320ae512013-10-24 09:20:05 +010028 if (ret < nr_cpu_ids)
29 return ret;
30
31 return cpu;
32}
33
Christoph Hellwigda695ba2016-09-14 16:18:55 +020034int blk_mq_map_queues(struct blk_mq_tag_set *set)
Jens Axboe320ae512013-10-24 09:20:05 +010035{
Christoph Hellwigda695ba2016-09-14 16:18:55 +020036 unsigned int *map = set->mq_map;
37 unsigned int nr_queues = set->nr_hw_queues;
Kyle Yan8e3a77b2017-05-18 15:31:58 -070038 unsigned int i, queue, first_sibling;
Jens Axboe320ae512013-10-24 09:20:05 +010039 cpumask_var_t cpus;
40
Jens Axboe320ae512013-10-24 09:20:05 +010041 queue = 0;
42 for_each_possible_cpu(i) {
Jens Axboe320ae512013-10-24 09:20:05 +010043 /*
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 Yan8e3a77b2017-05-18 15:31:58 -070048 if (nr_queues >= nr_cpu_ids) {
49 map[i] = cpu_to_queue_index(nr_cpu_ids, nr_queues,
50 queue);
Jens Axboe320ae512013-10-24 09:20:05 +010051 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 Yan8e3a77b2017-05-18 15:31:58 -070062 map[i] = cpu_to_queue_index(nr_cpu_ids, nr_queues,
Jens Axboe320ae512013-10-24 09:20:05 +010063 queue);
64 queue++;
65 } else
66 map[i] = map[first_sibling];
67 }
68
Jens Axboe320ae512013-10-24 09:20:05 +010069 free_cpumask_var(cpus);
70 return 0;
71}
72
Jens Axboef14bbe72014-05-27 12:06:53 -060073/*
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 */
77int 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 Tbffed452015-12-02 16:59:05 +053083 return local_memory_node(cpu_to_node(i));
Jens Axboef14bbe72014-05-27 12:06:53 -060084 }
85
86 return NUMA_NO_NODE;
87}