1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2016 Thomas Gleixner.
4 * Copyright (C) 2016-2017 Christoph Hellwig.
6 #include <linux/interrupt.h>
7 #include <linux/kernel.h>
8 #include <linux/slab.h>
11 static void irq_spread_init_one(struct cpumask
*irqmsk
, struct cpumask
*nmsk
,
14 const struct cpumask
*siblmsk
;
17 for ( ; cpus_per_vec
> 0; ) {
18 cpu
= cpumask_first(nmsk
);
20 /* Should not happen, but I'm too lazy to think about it */
21 if (cpu
>= nr_cpu_ids
)
24 cpumask_clear_cpu(cpu
, nmsk
);
25 cpumask_set_cpu(cpu
, irqmsk
);
28 /* If the cpu has siblings, use them first */
29 siblmsk
= topology_sibling_cpumask(cpu
);
30 for (sibl
= -1; cpus_per_vec
> 0; ) {
31 sibl
= cpumask_next(sibl
, siblmsk
);
32 if (sibl
>= nr_cpu_ids
)
34 if (!cpumask_test_and_clear_cpu(sibl
, nmsk
))
36 cpumask_set_cpu(sibl
, irqmsk
);
42 static cpumask_var_t
*alloc_node_to_cpumask(void)
47 masks
= kcalloc(nr_node_ids
, sizeof(cpumask_var_t
), GFP_KERNEL
);
51 for (node
= 0; node
< nr_node_ids
; node
++) {
52 if (!zalloc_cpumask_var(&masks
[node
], GFP_KERNEL
))
60 free_cpumask_var(masks
[node
]);
65 static void free_node_to_cpumask(cpumask_var_t
*masks
)
69 for (node
= 0; node
< nr_node_ids
; node
++)
70 free_cpumask_var(masks
[node
]);
74 static void build_node_to_cpumask(cpumask_var_t
*masks
)
78 for_each_possible_cpu(cpu
)
79 cpumask_set_cpu(cpu
, masks
[cpu_to_node(cpu
)]);
82 static int get_nodes_in_cpumask(cpumask_var_t
*node_to_cpumask
,
83 const struct cpumask
*mask
, nodemask_t
*nodemsk
)
87 /* Calculate the number of nodes in the supplied affinity mask */
89 if (cpumask_intersects(mask
, node_to_cpumask
[n
])) {
90 node_set(n
, *nodemsk
);
97 static int irq_build_affinity_masks(const struct irq_affinity
*affd
,
98 int startvec
, int numvecs
,
99 cpumask_var_t
*node_to_cpumask
,
100 const struct cpumask
*cpu_mask
,
101 struct cpumask
*nmsk
,
102 struct cpumask
*masks
)
104 int n
, nodes
, cpus_per_vec
, extra_vecs
, done
= 0;
105 int last_affv
= affd
->pre_vectors
+ numvecs
;
106 int curvec
= startvec
;
107 nodemask_t nodemsk
= NODE_MASK_NONE
;
109 if (!cpumask_weight(cpu_mask
))
112 nodes
= get_nodes_in_cpumask(node_to_cpumask
, cpu_mask
, &nodemsk
);
115 * If the number of nodes in the mask is greater than or equal the
116 * number of vectors we just spread the vectors across the nodes.
118 if (numvecs
<= nodes
) {
119 for_each_node_mask(n
, nodemsk
) {
120 cpumask_copy(masks
+ curvec
, node_to_cpumask
[n
]);
121 if (++done
== numvecs
)
123 if (++curvec
== last_affv
)
124 curvec
= affd
->pre_vectors
;
129 for_each_node_mask(n
, nodemsk
) {
130 int ncpus
, v
, vecs_to_assign
, vecs_per_node
;
132 /* Spread the vectors per node */
133 vecs_per_node
= (numvecs
- (curvec
- affd
->pre_vectors
)) / nodes
;
135 /* Get the cpus on this node which are in the mask */
136 cpumask_and(nmsk
, cpu_mask
, node_to_cpumask
[n
]);
138 /* Calculate the number of cpus per vector */
139 ncpus
= cpumask_weight(nmsk
);
140 vecs_to_assign
= min(vecs_per_node
, ncpus
);
142 /* Account for rounding errors */
143 extra_vecs
= ncpus
- vecs_to_assign
* (ncpus
/ vecs_to_assign
);
145 for (v
= 0; curvec
< last_affv
&& v
< vecs_to_assign
;
147 cpus_per_vec
= ncpus
/ vecs_to_assign
;
149 /* Account for extra vectors to compensate rounding errors */
154 irq_spread_init_one(masks
+ curvec
, nmsk
, cpus_per_vec
);
160 if (curvec
>= last_affv
)
161 curvec
= affd
->pre_vectors
;
170 * irq_create_affinity_masks - Create affinity masks for multiqueue spreading
171 * @nvecs: The total number of vectors
172 * @affd: Description of the affinity requirements
174 * Returns the masks pointer or NULL if allocation failed.
177 irq_create_affinity_masks(int nvecs
, const struct irq_affinity
*affd
)
179 int affvecs
= nvecs
- affd
->pre_vectors
- affd
->post_vectors
;
180 int curvec
, usedvecs
;
181 cpumask_var_t nmsk
, npresmsk
, *node_to_cpumask
;
182 struct cpumask
*masks
= NULL
;
185 * If there aren't any vectors left after applying the pre/post
186 * vectors don't bother with assigning affinity.
188 if (nvecs
== affd
->pre_vectors
+ affd
->post_vectors
)
191 if (!zalloc_cpumask_var(&nmsk
, GFP_KERNEL
))
194 if (!zalloc_cpumask_var(&npresmsk
, GFP_KERNEL
))
197 node_to_cpumask
= alloc_node_to_cpumask();
198 if (!node_to_cpumask
)
201 masks
= kcalloc(nvecs
, sizeof(*masks
), GFP_KERNEL
);
205 /* Fill out vectors at the beginning that don't need affinity */
206 for (curvec
= 0; curvec
< affd
->pre_vectors
; curvec
++)
207 cpumask_copy(masks
+ curvec
, irq_default_affinity
);
209 /* Stabilize the cpumasks */
211 build_node_to_cpumask(node_to_cpumask
);
213 /* Spread on present CPUs starting from affd->pre_vectors */
214 usedvecs
= irq_build_affinity_masks(affd
, curvec
, affvecs
,
215 node_to_cpumask
, cpu_present_mask
,
219 * Spread on non present CPUs starting from the next vector to be
220 * handled. If the spreading of present CPUs already exhausted the
221 * vector space, assign the non present CPUs to the already spread
224 if (usedvecs
>= affvecs
)
225 curvec
= affd
->pre_vectors
;
227 curvec
= affd
->pre_vectors
+ usedvecs
;
228 cpumask_andnot(npresmsk
, cpu_possible_mask
, cpu_present_mask
);
229 usedvecs
+= irq_build_affinity_masks(affd
, curvec
, affvecs
,
230 node_to_cpumask
, npresmsk
,
234 /* Fill out vectors at the end that don't need affinity */
235 if (usedvecs
>= affvecs
)
236 curvec
= affd
->pre_vectors
+ affvecs
;
238 curvec
= affd
->pre_vectors
+ usedvecs
;
239 for (; curvec
< nvecs
; curvec
++)
240 cpumask_copy(masks
+ curvec
, irq_default_affinity
);
243 free_node_to_cpumask(node_to_cpumask
);
245 free_cpumask_var(npresmsk
);
247 free_cpumask_var(nmsk
);
252 * irq_calc_affinity_vectors - Calculate the optimal number of vectors
253 * @minvec: The minimum number of vectors available
254 * @maxvec: The maximum number of vectors available
255 * @affd: Description of the affinity requirements
257 int irq_calc_affinity_vectors(int minvec
, int maxvec
, const struct irq_affinity
*affd
)
259 int resv
= affd
->pre_vectors
+ affd
->post_vectors
;
260 int vecs
= maxvec
- resv
;
267 ret
= min_t(int, cpumask_weight(cpu_possible_mask
), vecs
) + resv
;