blk-mq-cpumap.c 1.7 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 18
static int cpu_to_queue_index(struct blk_mq_queue_map *qmap,
			      unsigned int nr_queues, const int cpu)
19
{
20
	return qmap->queue_offset + (cpu % nr_queues);
21 22 23 24 25 26
}

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

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

	return cpu;
}

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

40
	for_each_possible_cpu(cpu) {
41
		/*
42 43 44 45
		 * 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.
46
		 */
47
		if (cpu < nr_queues) {
48
			map[cpu] = cpu_to_queue_index(qmap, nr_queues, cpu);
49 50 51
		} else {
			first_sibling = get_first_sibling(cpu);
			if (first_sibling == cpu)
52
				map[cpu] = cpu_to_queue_index(qmap, nr_queues, cpu);
53 54
			else
				map[cpu] = map[first_sibling];
55 56 57 58 59
		}
	}

	return 0;
}
60
EXPORT_SYMBOL_GPL(blk_mq_map_queues);
61

62 63 64 65
/*
 * 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 已提交
66
int blk_mq_hw_queue_to_node(struct blk_mq_queue_map *qmap, unsigned int index)
67 68 69 70
{
	int i;

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

	return NUMA_NO_NODE;
}