blk-mq-cpumap.c 1.6 KB
Newer Older
1 2 3 4 5
/*
 * CPU <-> hardware queue mapping helpers
 *
 * Copyright (C) 2013-2014 Jens Axboe
 */
6 7 8 9 10 11 12 13 14 15 16
#include <linux/kernel.h>
#include <linux/threads.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/cpu.h>

#include <linux/blk-mq.h>
#include "blk.h"
#include "blk-mq.h"

17
static int cpu_to_queue_index(unsigned int nr_queues, const int cpu)
18
{
19
	return cpu % nr_queues;
20 21 22 23 24 25
}

static int get_first_sibling(unsigned int cpu)
{
	unsigned int ret;

26
	ret = cpumask_first(topology_sibling_cpumask(cpu));
27 28 29 30 31 32
	if (ret < nr_cpu_ids)
		return ret;

	return cpu;
}

J
Jens Axboe 已提交
33
int blk_mq_map_queues(struct blk_mq_queue_map *qmap)
34
{
J
Jens Axboe 已提交
35 36
	unsigned int *map = qmap->mq_map;
	unsigned int nr_queues = qmap->nr_queues;
37
	unsigned int cpu, first_sibling;
38

39
	for_each_possible_cpu(cpu) {
40
		/*
41 42 43 44
		 * First do sequential mapping between CPUs and queues.
		 * In case we still have CPUs to map, and we have some number of
		 * threads per cores then map sibling threads to the same queue for
		 * performace optimizations.
45
		 */
46
		if (cpu < nr_queues) {
47
			map[cpu] = cpu_to_queue_index(nr_queues, cpu);
48 49 50
		} else {
			first_sibling = get_first_sibling(cpu);
			if (first_sibling == cpu)
51
				map[cpu] = cpu_to_queue_index(nr_queues, cpu);
52 53
			else
				map[cpu] = map[first_sibling];
54 55 56 57 58
		}
	}

	return 0;
}
59
EXPORT_SYMBOL_GPL(blk_mq_map_queues);
60

61 62 63 64
/*
 * We have no quick way of doing reverse lookups. This is only used at
 * queue init time, so runtime isn't important.
 */
J
Jens Axboe 已提交
65
int blk_mq_hw_queue_to_node(struct blk_mq_queue_map *qmap, unsigned int index)
66 67 68 69
{
	int i;

	for_each_possible_cpu(i) {
J
Jens Axboe 已提交
70
		if (index == qmap->mq_map[i])
71
			return local_memory_node(cpu_to_node(i));
72 73 74 75
	}

	return NUMA_NO_NODE;
}