blob: b49f8661ffcd02d869f6d8b731e0effed36ac005 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_CPUMASK_H
2#define __LINUX_CPUMASK_H
3
4/*
5 * Cpumasks provide a bitmap suitable for representing the
Rusty Russell6ba2ef72009-09-24 09:34:53 -06006 * set of CPU's in a system, one bit position per CPU number. In general,
7 * only nr_cpu_ids (<= NR_CPUS) bits are valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/threads.h>
11#include <linux/bitmap.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050012#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Rusty Russellcdfdef72015-03-05 10:49:19 +103014/* Don't assign or return these: may not be this big! */
Rusty Russell2d3854a2008-11-05 13:39:10 +110015typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Rusty Russellae7a47e2008-12-30 09:05:15 +103017/**
Rusty Russell6ba2ef72009-09-24 09:34:53 -060018 * cpumask_bits - get the bits in a cpumask
19 * @maskp: the struct cpumask *
Rusty Russellae7a47e2008-12-30 09:05:15 +103020 *
Rusty Russell6ba2ef72009-09-24 09:34:53 -060021 * You should only assume nr_cpu_ids bits of this mask are valid. This is
22 * a macro so it's const-correct.
Rusty Russellae7a47e2008-12-30 09:05:15 +103023 */
Rusty Russell6ba2ef72009-09-24 09:34:53 -060024#define cpumask_bits(maskp) ((maskp)->bits)
Paul Jackson7ea931c2008-04-28 02:12:29 -070025
Tejun Heof1bbc032015-02-13 14:36:57 -080026/**
27 * cpumask_pr_args - printf args to output a cpumask
28 * @maskp: cpumask to be printed
29 *
30 * Can be used to provide arguments for '%*pb[l]' when printing a cpumask.
31 */
32#define cpumask_pr_args(maskp) nr_cpu_ids, cpumask_bits(maskp)
33
Mike Travis41df0d612008-05-12 21:21:13 +020034#if NR_CPUS == 1
Mike Travis41df0d612008-05-12 21:21:13 +020035#define nr_cpu_ids 1
Rusty Russell6ba2ef72009-09-24 09:34:53 -060036#else
Mike Travis41df0d612008-05-12 21:21:13 +020037extern int nr_cpu_ids;
Mike Travis41df0d612008-05-12 21:21:13 +020038#endif
39
Rusty Russell6ba2ef72009-09-24 09:34:53 -060040#ifdef CONFIG_CPUMASK_OFFSTACK
41/* Assuming NR_CPUS is huge, a runtime limit is more efficient. Also,
42 * not all bits may be allocated. */
43#define nr_cpumask_bits nr_cpu_ids
44#else
45#define nr_cpumask_bits NR_CPUS
46#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * The following particular system cpumasks and operations manage
Rusty Russellb3199c02008-12-30 09:05:14 +103050 * possible, present, active and online cpus.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 *
Rusty Russellb3199c02008-12-30 09:05:14 +103052 * cpu_possible_mask- has bit 'cpu' set iff cpu is populatable
53 * cpu_present_mask - has bit 'cpu' set iff cpu is populated
54 * cpu_online_mask - has bit 'cpu' set iff cpu available to scheduler
55 * cpu_active_mask - has bit 'cpu' set iff cpu available to migration
Olav Haugan99cd46a2016-05-29 19:56:37 -070056 * cpu_isolated_mask- has bit 'cpu' set iff cpu isolated
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 *
Rusty Russellb3199c02008-12-30 09:05:14 +103058 * If !CONFIG_HOTPLUG_CPU, present == possible, and active == online.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
Rusty Russellb3199c02008-12-30 09:05:14 +103060 * The cpu_possible_mask is fixed at boot time, as the set of CPU id's
61 * that it is possible might ever be plugged in at anytime during the
62 * life of that system boot. The cpu_present_mask is dynamic(*),
63 * representing which CPUs are currently plugged in. And
64 * cpu_online_mask is the dynamic subset of cpu_present_mask,
65 * indicating those CPUs available for scheduling.
66 *
67 * If HOTPLUG is enabled, then cpu_possible_mask is forced to have
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * all NR_CPUS bits set, otherwise it is just the set of CPUs that
69 * ACPI reports present at boot.
70 *
Rusty Russellb3199c02008-12-30 09:05:14 +103071 * If HOTPLUG is enabled, then cpu_present_mask varies dynamically,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * depending on what ACPI reports as currently plugged in, otherwise
Rusty Russellb3199c02008-12-30 09:05:14 +103073 * cpu_present_mask is just a copy of cpu_possible_mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
Rusty Russellb3199c02008-12-30 09:05:14 +103075 * (*) Well, cpu_present_mask is dynamic in the hotplug case. If not
76 * hotplug, it's a copy of cpu_possible_mask, hence fixed at boot.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
78 * Subtleties:
79 * 1) UP arch's (NR_CPUS == 1, CONFIG_SMP not defined) hardcode
80 * assumption that their single CPU is online. The UP
Rusty Russellb3199c02008-12-30 09:05:14 +103081 * cpu_{online,possible,present}_masks are placebos. Changing them
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * will have no useful affect on the following num_*_cpus()
83 * and cpu_*() macros in the UP case. This ugliness is a UP
84 * optimization - don't waste any instructions or memory references
85 * asking if you're online or how many CPUs there are if there is
86 * only one CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
Rasmus Villemoes4b804c82016-01-20 15:00:19 -080089extern struct cpumask __cpu_possible_mask;
90extern struct cpumask __cpu_online_mask;
91extern struct cpumask __cpu_present_mask;
92extern struct cpumask __cpu_active_mask;
Olav Haugan99cd46a2016-05-29 19:56:37 -070093extern struct cpumask __cpu_isolated_mask;
Rasmus Villemoes5aec01b2016-01-20 15:00:25 -080094#define cpu_possible_mask ((const struct cpumask *)&__cpu_possible_mask)
95#define cpu_online_mask ((const struct cpumask *)&__cpu_online_mask)
96#define cpu_present_mask ((const struct cpumask *)&__cpu_present_mask)
97#define cpu_active_mask ((const struct cpumask *)&__cpu_active_mask)
Olav Haugan99cd46a2016-05-29 19:56:37 -070098#define cpu_isolated_mask ((const struct cpumask *)&__cpu_isolated_mask)
Rusty Russellb3199c02008-12-30 09:05:14 +103099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#if NR_CPUS > 1
Rusty Russellae7a47e2008-12-30 09:05:15 +1030101#define num_online_cpus() cpumask_weight(cpu_online_mask)
102#define num_possible_cpus() cpumask_weight(cpu_possible_mask)
103#define num_present_cpus() cpumask_weight(cpu_present_mask)
Peter Zijlstra6ad4c182009-11-25 13:31:39 +0100104#define num_active_cpus() cpumask_weight(cpu_active_mask)
Olav Haugan99cd46a2016-05-29 19:56:37 -0700105#define num_isolated_cpus() cpumask_weight(cpu_isolated_mask)
Pavankumar Kondeti68435b02017-06-29 16:17:55 +0530106#define num_online_uniso_cpus() \
107({ \
108 cpumask_t mask; \
109 \
110 cpumask_andnot(&mask, cpu_online_mask, cpu_isolated_mask); \
111 cpumask_weight(&mask); \
112})
Rusty Russellae7a47e2008-12-30 09:05:15 +1030113#define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask)
114#define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask)
115#define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask)
116#define cpu_active(cpu) cpumask_test_cpu((cpu), cpu_active_mask)
Olav Haugan99cd46a2016-05-29 19:56:37 -0700117#define cpu_isolated(cpu) cpumask_test_cpu((cpu), cpu_isolated_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#else
Heiko Carstens221e3eb2010-03-05 13:42:41 -0800119#define num_online_cpus() 1U
120#define num_possible_cpus() 1U
121#define num_present_cpus() 1U
122#define num_active_cpus() 1U
Olav Haugan99cd46a2016-05-29 19:56:37 -0700123#define num_isolated_cpus() 0U
Pavankumar Kondeti68435b02017-06-29 16:17:55 +0530124#define num_online_uniso_cpus() 1U
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#define cpu_online(cpu) ((cpu) == 0)
126#define cpu_possible(cpu) ((cpu) == 0)
127#define cpu_present(cpu) ((cpu) == 0)
Max Krasnyanskye761b772008-07-15 04:43:49 -0700128#define cpu_active(cpu) ((cpu) == 0)
Olav Haugan0315a602017-01-19 17:14:29 -0800129#define cpu_isolated(cpu) ((cpu) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#endif
131
Rusty Russell2d3854a2008-11-05 13:39:10 +1100132/* verify cpu argument to cpumask_* operators */
133static inline unsigned int cpumask_check(unsigned int cpu)
134{
135#ifdef CONFIG_DEBUG_PER_CPU_MAPS
136 WARN_ON_ONCE(cpu >= nr_cpumask_bits);
137#endif /* CONFIG_DEBUG_PER_CPU_MAPS */
138 return cpu;
139}
140
141#if NR_CPUS == 1
Rusty Russell984f2f32008-11-08 20:24:19 +1100142/* Uniprocessor. Assume all masks are "1". */
143static inline unsigned int cpumask_first(const struct cpumask *srcp)
144{
145 return 0;
146}
147
148/* Valid inputs for n are -1 and 0. */
149static inline unsigned int cpumask_next(int n, const struct cpumask *srcp)
150{
151 return n+1;
152}
153
154static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp)
155{
156 return n+1;
157}
158
159static inline unsigned int cpumask_next_and(int n,
160 const struct cpumask *srcp,
161 const struct cpumask *andp)
162{
163 return n+1;
164}
165
166/* cpu must be a valid cpu, ie 0, so there's no other choice. */
167static inline unsigned int cpumask_any_but(const struct cpumask *mask,
168 unsigned int cpu)
169{
170 return 1;
171}
Rusty Russell2d3854a2008-11-05 13:39:10 +1100172
Rusty Russellf36963c2015-05-09 03:14:13 +0930173static inline unsigned int cpumask_local_spread(unsigned int i, int node)
Amir Vadaida913092014-06-09 10:24:38 +0300174{
Amir Vadaida913092014-06-09 10:24:38 +0300175 return 0;
176}
177
Rusty Russell2d3854a2008-11-05 13:39:10 +1100178#define for_each_cpu(cpu, mask) \
179 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask)
Paul E. McKenney8bd93a22010-02-22 17:04:59 -0800180#define for_each_cpu_not(cpu, mask) \
181 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask)
Rusty Russell2d3854a2008-11-05 13:39:10 +1100182#define for_each_cpu_and(cpu, mask, and) \
183 for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)and)
184#else
185/**
186 * cpumask_first - get the first cpu in a cpumask
187 * @srcp: the cpumask pointer
188 *
189 * Returns >= nr_cpu_ids if no cpus set.
190 */
191static inline unsigned int cpumask_first(const struct cpumask *srcp)
192{
193 return find_first_bit(cpumask_bits(srcp), nr_cpumask_bits);
194}
195
196/**
197 * cpumask_next - get the next cpu in a cpumask
198 * @n: the cpu prior to the place to search (ie. return will be > @n)
199 * @srcp: the cpumask pointer
200 *
201 * Returns >= nr_cpu_ids if no further cpus set.
202 */
203static inline unsigned int cpumask_next(int n, const struct cpumask *srcp)
204{
205 /* -1 is a legal arg here. */
206 if (n != -1)
207 cpumask_check(n);
208 return find_next_bit(cpumask_bits(srcp), nr_cpumask_bits, n+1);
209}
210
211/**
212 * cpumask_next_zero - get the next unset cpu in a cpumask
213 * @n: the cpu prior to the place to search (ie. return will be > @n)
214 * @srcp: the cpumask pointer
215 *
216 * Returns >= nr_cpu_ids if no further cpus unset.
217 */
218static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp)
219{
220 /* -1 is a legal arg here. */
221 if (n != -1)
222 cpumask_check(n);
223 return find_next_zero_bit(cpumask_bits(srcp), nr_cpumask_bits, n+1);
224}
225
226int cpumask_next_and(int n, const struct cpumask *, const struct cpumask *);
227int cpumask_any_but(const struct cpumask *mask, unsigned int cpu);
Rusty Russellf36963c2015-05-09 03:14:13 +0930228unsigned int cpumask_local_spread(unsigned int i, int node);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100229
Rusty Russell984f2f32008-11-08 20:24:19 +1100230/**
231 * for_each_cpu - iterate over every cpu in a mask
232 * @cpu: the (optionally unsigned) integer iterator
233 * @mask: the cpumask pointer
234 *
235 * After the loop, cpu is >= nr_cpu_ids.
236 */
Rusty Russell2d3854a2008-11-05 13:39:10 +1100237#define for_each_cpu(cpu, mask) \
238 for ((cpu) = -1; \
239 (cpu) = cpumask_next((cpu), (mask)), \
240 (cpu) < nr_cpu_ids;)
Rusty Russell984f2f32008-11-08 20:24:19 +1100241
242/**
Paul E. McKenney8bd93a22010-02-22 17:04:59 -0800243 * for_each_cpu_not - iterate over every cpu in a complemented mask
244 * @cpu: the (optionally unsigned) integer iterator
245 * @mask: the cpumask pointer
246 *
247 * After the loop, cpu is >= nr_cpu_ids.
248 */
249#define for_each_cpu_not(cpu, mask) \
250 for ((cpu) = -1; \
251 (cpu) = cpumask_next_zero((cpu), (mask)), \
252 (cpu) < nr_cpu_ids;)
253
Peter Zijlstra542ebc92017-04-14 14:20:05 +0200254extern int cpumask_next_wrap(int n, const struct cpumask *mask, int start, bool wrap);
255
256/**
257 * for_each_cpu_wrap - iterate over every cpu in a mask, starting at a specified location
258 * @cpu: the (optionally unsigned) integer iterator
259 * @mask: the cpumask poiter
260 * @start: the start location
261 *
262 * The implementation does not assume any bit in @mask is set (including @start).
263 *
264 * After the loop, cpu is >= nr_cpu_ids.
265 */
266#define for_each_cpu_wrap(cpu, mask, start) \
267 for ((cpu) = cpumask_next_wrap((start)-1, (mask), (start), false); \
268 (cpu) < nr_cpumask_bits; \
269 (cpu) = cpumask_next_wrap((cpu), (mask), (start), true))
270
Paul E. McKenney8bd93a22010-02-22 17:04:59 -0800271/**
Rusty Russell984f2f32008-11-08 20:24:19 +1100272 * for_each_cpu_and - iterate over every cpu in both masks
273 * @cpu: the (optionally unsigned) integer iterator
274 * @mask: the first cpumask pointer
275 * @and: the second cpumask pointer
276 *
277 * This saves a temporary CPU mask in many places. It is equivalent to:
278 * struct cpumask tmp;
279 * cpumask_and(&tmp, &mask, &and);
280 * for_each_cpu(cpu, &tmp)
281 * ...
282 *
283 * After the loop, cpu is >= nr_cpu_ids.
284 */
Rusty Russell2d3854a2008-11-05 13:39:10 +1100285#define for_each_cpu_and(cpu, mask, and) \
286 for ((cpu) = -1; \
287 (cpu) = cpumask_next_and((cpu), (mask), (and)), \
288 (cpu) < nr_cpu_ids;)
289#endif /* SMP */
290
291#define CPU_BITS_NONE \
292{ \
293 [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \
294}
295
296#define CPU_BITS_CPU0 \
297{ \
298 [0] = 1UL \
299}
300
301/**
302 * cpumask_set_cpu - set a cpu in a cpumask
303 * @cpu: cpu number (< nr_cpu_ids)
304 * @dstp: the cpumask pointer
305 */
306static inline void cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp)
307{
308 set_bit(cpumask_check(cpu), cpumask_bits(dstp));
309}
310
311/**
312 * cpumask_clear_cpu - clear a cpu in a cpumask
313 * @cpu: cpu number (< nr_cpu_ids)
314 * @dstp: the cpumask pointer
315 */
316static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp)
317{
318 clear_bit(cpumask_check(cpu), cpumask_bits(dstp));
319}
320
321/**
322 * cpumask_test_cpu - test for a cpu in a cpumask
323 * @cpu: cpu number (< nr_cpu_ids)
324 * @cpumask: the cpumask pointer
325 *
Alex Shic777ad62012-05-28 22:23:51 +0800326 * Returns 1 if @cpu is set in @cpumask, else returns 0
Rusty Russell2d3854a2008-11-05 13:39:10 +1100327 */
Rasmus Villemoes3bbf7f42015-03-31 13:25:05 +1030328static inline int cpumask_test_cpu(int cpu, const struct cpumask *cpumask)
329{
330 return test_bit(cpumask_check(cpu), cpumask_bits((cpumask)));
331}
Rusty Russell2d3854a2008-11-05 13:39:10 +1100332
333/**
334 * cpumask_test_and_set_cpu - atomically test and set a cpu in a cpumask
335 * @cpu: cpu number (< nr_cpu_ids)
336 * @cpumask: the cpumask pointer
337 *
Alex Shic777ad62012-05-28 22:23:51 +0800338 * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0
339 *
Rusty Russell2d3854a2008-11-05 13:39:10 +1100340 * test_and_set_bit wrapper for cpumasks.
341 */
342static inline int cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask)
343{
344 return test_and_set_bit(cpumask_check(cpu), cpumask_bits(cpumask));
345}
346
347/**
Xiao Guangrong54fdade2009-09-22 16:43:39 -0700348 * cpumask_test_and_clear_cpu - atomically test and clear a cpu in a cpumask
349 * @cpu: cpu number (< nr_cpu_ids)
350 * @cpumask: the cpumask pointer
351 *
Alex Shic777ad62012-05-28 22:23:51 +0800352 * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0
353 *
Xiao Guangrong54fdade2009-09-22 16:43:39 -0700354 * test_and_clear_bit wrapper for cpumasks.
355 */
356static inline int cpumask_test_and_clear_cpu(int cpu, struct cpumask *cpumask)
357{
358 return test_and_clear_bit(cpumask_check(cpu), cpumask_bits(cpumask));
359}
360
361/**
Rusty Russell2d3854a2008-11-05 13:39:10 +1100362 * cpumask_setall - set all cpus (< nr_cpu_ids) in a cpumask
363 * @dstp: the cpumask pointer
364 */
365static inline void cpumask_setall(struct cpumask *dstp)
366{
367 bitmap_fill(cpumask_bits(dstp), nr_cpumask_bits);
368}
369
370/**
371 * cpumask_clear - clear all cpus (< nr_cpu_ids) in a cpumask
372 * @dstp: the cpumask pointer
373 */
374static inline void cpumask_clear(struct cpumask *dstp)
375{
376 bitmap_zero(cpumask_bits(dstp), nr_cpumask_bits);
377}
378
379/**
380 * cpumask_and - *dstp = *src1p & *src2p
381 * @dstp: the cpumask result
382 * @src1p: the first input
383 * @src2p: the second input
Alex Shic777ad62012-05-28 22:23:51 +0800384 *
385 * If *@dstp is empty, returns 0, else returns 1
Rusty Russell2d3854a2008-11-05 13:39:10 +1100386 */
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700387static inline int cpumask_and(struct cpumask *dstp,
Rusty Russell2d3854a2008-11-05 13:39:10 +1100388 const struct cpumask *src1p,
389 const struct cpumask *src2p)
390{
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700391 return bitmap_and(cpumask_bits(dstp), cpumask_bits(src1p),
Rusty Russell2d3854a2008-11-05 13:39:10 +1100392 cpumask_bits(src2p), nr_cpumask_bits);
393}
394
395/**
396 * cpumask_or - *dstp = *src1p | *src2p
397 * @dstp: the cpumask result
398 * @src1p: the first input
399 * @src2p: the second input
400 */
401static inline void cpumask_or(struct cpumask *dstp, const struct cpumask *src1p,
402 const struct cpumask *src2p)
403{
404 bitmap_or(cpumask_bits(dstp), cpumask_bits(src1p),
405 cpumask_bits(src2p), nr_cpumask_bits);
406}
407
408/**
409 * cpumask_xor - *dstp = *src1p ^ *src2p
410 * @dstp: the cpumask result
411 * @src1p: the first input
412 * @src2p: the second input
413 */
414static inline void cpumask_xor(struct cpumask *dstp,
415 const struct cpumask *src1p,
416 const struct cpumask *src2p)
417{
418 bitmap_xor(cpumask_bits(dstp), cpumask_bits(src1p),
419 cpumask_bits(src2p), nr_cpumask_bits);
420}
421
422/**
423 * cpumask_andnot - *dstp = *src1p & ~*src2p
424 * @dstp: the cpumask result
425 * @src1p: the first input
426 * @src2p: the second input
Alex Shic777ad62012-05-28 22:23:51 +0800427 *
428 * If *@dstp is empty, returns 0, else returns 1
Rusty Russell2d3854a2008-11-05 13:39:10 +1100429 */
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700430static inline int cpumask_andnot(struct cpumask *dstp,
Rusty Russell2d3854a2008-11-05 13:39:10 +1100431 const struct cpumask *src1p,
432 const struct cpumask *src2p)
433{
Linus Torvaldsf4b03732009-08-21 09:26:15 -0700434 return bitmap_andnot(cpumask_bits(dstp), cpumask_bits(src1p),
Rusty Russell2d3854a2008-11-05 13:39:10 +1100435 cpumask_bits(src2p), nr_cpumask_bits);
436}
437
438/**
439 * cpumask_complement - *dstp = ~*srcp
440 * @dstp: the cpumask result
441 * @srcp: the input to invert
442 */
443static inline void cpumask_complement(struct cpumask *dstp,
444 const struct cpumask *srcp)
445{
446 bitmap_complement(cpumask_bits(dstp), cpumask_bits(srcp),
447 nr_cpumask_bits);
448}
449
450/**
451 * cpumask_equal - *src1p == *src2p
452 * @src1p: the first input
453 * @src2p: the second input
454 */
455static inline bool cpumask_equal(const struct cpumask *src1p,
456 const struct cpumask *src2p)
457{
458 return bitmap_equal(cpumask_bits(src1p), cpumask_bits(src2p),
459 nr_cpumask_bits);
460}
461
462/**
463 * cpumask_intersects - (*src1p & *src2p) != 0
464 * @src1p: the first input
465 * @src2p: the second input
466 */
467static inline bool cpumask_intersects(const struct cpumask *src1p,
468 const struct cpumask *src2p)
469{
470 return bitmap_intersects(cpumask_bits(src1p), cpumask_bits(src2p),
471 nr_cpumask_bits);
472}
473
474/**
475 * cpumask_subset - (*src1p & ~*src2p) == 0
476 * @src1p: the first input
477 * @src2p: the second input
Alex Shic777ad62012-05-28 22:23:51 +0800478 *
479 * Returns 1 if *@src1p is a subset of *@src2p, else returns 0
Rusty Russell2d3854a2008-11-05 13:39:10 +1100480 */
481static inline int cpumask_subset(const struct cpumask *src1p,
482 const struct cpumask *src2p)
483{
484 return bitmap_subset(cpumask_bits(src1p), cpumask_bits(src2p),
485 nr_cpumask_bits);
486}
487
488/**
489 * cpumask_empty - *srcp == 0
490 * @srcp: the cpumask to that all cpus < nr_cpu_ids are clear.
491 */
492static inline bool cpumask_empty(const struct cpumask *srcp)
493{
494 return bitmap_empty(cpumask_bits(srcp), nr_cpumask_bits);
495}
496
497/**
498 * cpumask_full - *srcp == 0xFFFFFFFF...
499 * @srcp: the cpumask to that all cpus < nr_cpu_ids are set.
500 */
501static inline bool cpumask_full(const struct cpumask *srcp)
502{
503 return bitmap_full(cpumask_bits(srcp), nr_cpumask_bits);
504}
505
506/**
507 * cpumask_weight - Count of bits in *srcp
508 * @srcp: the cpumask to count bits (< nr_cpu_ids) in.
509 */
510static inline unsigned int cpumask_weight(const struct cpumask *srcp)
511{
512 return bitmap_weight(cpumask_bits(srcp), nr_cpumask_bits);
513}
514
515/**
516 * cpumask_shift_right - *dstp = *srcp >> n
517 * @dstp: the cpumask result
518 * @srcp: the input to shift
519 * @n: the number of bits to shift by
520 */
521static inline void cpumask_shift_right(struct cpumask *dstp,
522 const struct cpumask *srcp, int n)
523{
524 bitmap_shift_right(cpumask_bits(dstp), cpumask_bits(srcp), n,
525 nr_cpumask_bits);
526}
527
528/**
529 * cpumask_shift_left - *dstp = *srcp << n
530 * @dstp: the cpumask result
531 * @srcp: the input to shift
532 * @n: the number of bits to shift by
533 */
534static inline void cpumask_shift_left(struct cpumask *dstp,
535 const struct cpumask *srcp, int n)
536{
537 bitmap_shift_left(cpumask_bits(dstp), cpumask_bits(srcp), n,
538 nr_cpumask_bits);
539}
540
541/**
542 * cpumask_copy - *dstp = *srcp
543 * @dstp: the result
544 * @srcp: the input cpumask
545 */
546static inline void cpumask_copy(struct cpumask *dstp,
547 const struct cpumask *srcp)
548{
549 bitmap_copy(cpumask_bits(dstp), cpumask_bits(srcp), nr_cpumask_bits);
550}
551
552/**
553 * cpumask_any - pick a "random" cpu from *srcp
554 * @srcp: the input cpumask
555 *
556 * Returns >= nr_cpu_ids if no cpus set.
557 */
558#define cpumask_any(srcp) cpumask_first(srcp)
559
560/**
561 * cpumask_first_and - return the first cpu from *srcp1 & *srcp2
562 * @src1p: the first input
563 * @src2p: the second input
564 *
565 * Returns >= nr_cpu_ids if no cpus set in both. See also cpumask_next_and().
566 */
567#define cpumask_first_and(src1p, src2p) cpumask_next_and(-1, (src1p), (src2p))
568
569/**
570 * cpumask_any_and - pick a "random" cpu from *mask1 & *mask2
571 * @mask1: the first input cpumask
572 * @mask2: the second input cpumask
573 *
574 * Returns >= nr_cpu_ids if no cpus set.
575 */
576#define cpumask_any_and(mask1, mask2) cpumask_first_and((mask1), (mask2))
577
578/**
Rusty Russellcd83e422008-11-07 11:12:29 +1100579 * cpumask_of - the cpumask containing just a given cpu
580 * @cpu: the cpu (<= nr_cpu_ids)
581 */
582#define cpumask_of(cpu) (get_cpu_mask(cpu))
583
584/**
Rusty Russell29c01772008-12-13 21:20:25 +1030585 * cpumask_parse_user - extract a cpumask from a user string
586 * @buf: the buffer to extract from
587 * @len: the length of the buffer
588 * @dstp: the cpumask to set.
589 *
590 * Returns -errno, or 0 for success.
591 */
592static inline int cpumask_parse_user(const char __user *buf, int len,
593 struct cpumask *dstp)
594{
Tejun Heoc4236b02017-02-08 14:30:56 -0800595 return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
Rusty Russell29c01772008-12-13 21:20:25 +1030596}
597
598/**
Mike Travis4b060422011-05-24 17:13:12 -0700599 * cpumask_parselist_user - extract a cpumask from a user string
600 * @buf: the buffer to extract from
601 * @len: the length of the buffer
602 * @dstp: the cpumask to set.
603 *
604 * Returns -errno, or 0 for success.
605 */
606static inline int cpumask_parselist_user(const char __user *buf, int len,
607 struct cpumask *dstp)
608{
609 return bitmap_parselist_user(buf, len, cpumask_bits(dstp),
Tejun Heoc4236b02017-02-08 14:30:56 -0800610 nr_cpumask_bits);
Mike Travis4b060422011-05-24 17:13:12 -0700611}
612
613/**
Geliang Tangb06fb412016-08-02 14:05:42 -0700614 * cpumask_parse - extract a cpumask from a string
Tejun Heoba630e42013-03-12 11:30:04 -0700615 * @buf: the buffer to extract from
616 * @dstp: the cpumask to set.
617 *
618 * Returns -errno, or 0 for success.
619 */
620static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
621{
622 char *nl = strchr(buf, '\n');
Brian W Hartcea092c2014-05-14 10:33:45 +0930623 unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf);
Tejun Heoba630e42013-03-12 11:30:04 -0700624
Tejun Heoc4236b02017-02-08 14:30:56 -0800625 return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
Tejun Heoba630e42013-03-12 11:30:04 -0700626}
627
628/**
Alex Shi231daf02012-07-27 09:29:42 +0930629 * cpulist_parse - extract a cpumask from a user string of ranges
Rusty Russell29c01772008-12-13 21:20:25 +1030630 * @buf: the buffer to extract from
Rusty Russell29c01772008-12-13 21:20:25 +1030631 * @dstp: the cpumask to set.
632 *
633 * Returns -errno, or 0 for success.
634 */
635static inline int cpulist_parse(const char *buf, struct cpumask *dstp)
636{
Tejun Heoc4236b02017-02-08 14:30:56 -0800637 return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100638}
639
640/**
641 * cpumask_size - size to allocate for a 'struct cpumask' in bytes
Rusty Russell2d3854a2008-11-05 13:39:10 +1100642 */
643static inline size_t cpumask_size(void)
644{
Rusty Russellcdfdef72015-03-05 10:49:19 +1030645 return BITS_TO_LONGS(nr_cpumask_bits) * sizeof(long);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100646}
647
648/*
649 * cpumask_var_t: struct cpumask for stack usage.
650 *
651 * Oh, the wicked games we play! In order to make kernel coding a
652 * little more difficult, we typedef cpumask_var_t to an array or a
653 * pointer: doing &mask on an array is a noop, so it still works.
654 *
655 * ie.
656 * cpumask_var_t tmpmask;
657 * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
658 * return -ENOMEM;
659 *
660 * ... use 'tmpmask' like a normal struct cpumask * ...
661 *
662 * free_cpumask_var(tmpmask);
KOSAKI Motohiroa64a26e2011-07-26 16:08:45 -0700663 *
664 *
665 * However, one notable exception is there. alloc_cpumask_var() allocates
666 * only nr_cpumask_bits bits (in the other hand, real cpumask_t always has
667 * NR_CPUS bits). Therefore you don't have to dereference cpumask_var_t.
668 *
669 * cpumask_var_t tmpmask;
670 * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
671 * return -ENOMEM;
672 *
673 * var = *tmpmask;
674 *
675 * This code makes NR_CPUS length memcopy and brings to a memory corruption.
676 * cpumask_copy() provide safe copy functionality.
Christoph Lameter4ba29682014-08-26 19:12:21 -0500677 *
678 * Note that there is another evil here: If you define a cpumask_var_t
679 * as a percpu variable then the way to obtain the address of the cpumask
680 * structure differently influences what this_cpu_* operation needs to be
681 * used. Please use this_cpu_cpumask_var_t in those cases. The direct use
682 * of this_cpu_ptr() or this_cpu_read() will lead to failures when the
683 * other type of cpumask_var_t implementation is configured.
Rusty Russell2d3854a2008-11-05 13:39:10 +1100684 */
685#ifdef CONFIG_CPUMASK_OFFSTACK
686typedef struct cpumask *cpumask_var_t;
687
Christoph Lameter4ba29682014-08-26 19:12:21 -0500688#define this_cpu_cpumask_var_ptr(x) this_cpu_read(x)
689
Mike Travis7b4967c2008-12-19 16:56:37 +1030690bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100691bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags);
Yinghai Lu0281b5d2009-06-06 14:50:36 -0700692bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node);
693bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100694void alloc_bootmem_cpumask_var(cpumask_var_t *mask);
695void free_cpumask_var(cpumask_var_t mask);
Rusty Russellcd83e422008-11-07 11:12:29 +1100696void free_bootmem_cpumask_var(cpumask_var_t mask);
Rusty Russell2d3854a2008-11-05 13:39:10 +1100697
698#else
699typedef struct cpumask cpumask_var_t[1];
700
Christoph Lameter4ba29682014-08-26 19:12:21 -0500701#define this_cpu_cpumask_var_ptr(x) this_cpu_ptr(x)
702
Rusty Russell2d3854a2008-11-05 13:39:10 +1100703static inline bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
704{
705 return true;
706}
707
Mike Travis7b4967c2008-12-19 16:56:37 +1030708static inline bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags,
709 int node)
710{
711 return true;
712}
713
Yinghai Lu0281b5d2009-06-06 14:50:36 -0700714static inline bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
715{
716 cpumask_clear(*mask);
717 return true;
718}
719
720static inline bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags,
721 int node)
722{
723 cpumask_clear(*mask);
724 return true;
725}
726
Rusty Russell2d3854a2008-11-05 13:39:10 +1100727static inline void alloc_bootmem_cpumask_var(cpumask_var_t *mask)
728{
729}
730
731static inline void free_cpumask_var(cpumask_var_t mask)
732{
733}
Rusty Russellcd83e422008-11-07 11:12:29 +1100734
735static inline void free_bootmem_cpumask_var(cpumask_var_t mask)
736{
737}
Rusty Russell2d3854a2008-11-05 13:39:10 +1100738#endif /* CONFIG_CPUMASK_OFFSTACK */
739
Rusty Russell2d3854a2008-11-05 13:39:10 +1100740/* It's common to want to use cpu_all_mask in struct member initializers,
741 * so it has to refer to an address rather than a pointer. */
742extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS);
743#define cpu_all_mask to_cpumask(cpu_all_bits)
744
745/* First bits of cpu_bit_bitmap are in fact unset. */
746#define cpu_none_mask to_cpumask(cpu_bit_bitmap[0])
747
Rusty Russellae7a47e2008-12-30 09:05:15 +1030748#define for_each_possible_cpu(cpu) for_each_cpu((cpu), cpu_possible_mask)
749#define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
750#define for_each_present_cpu(cpu) for_each_cpu((cpu), cpu_present_mask)
Olav Haugan99cd46a2016-05-29 19:56:37 -0700751#define for_each_isolated_cpu(cpu) for_each_cpu((cpu), cpu_isolated_mask)
Rusty Russellae7a47e2008-12-30 09:05:15 +1030752
Rusty Russell2d3854a2008-11-05 13:39:10 +1100753/* Wrappers for arch boot code to manipulate normally-constant masks */
Rusty Russell3fa41522008-12-30 09:05:16 +1030754void init_cpu_present(const struct cpumask *src);
755void init_cpu_possible(const struct cpumask *src);
756void init_cpu_online(const struct cpumask *src);
Rusty Russell6ba2ef72009-09-24 09:34:53 -0600757
Rasmus Villemoes94256762016-01-20 15:00:28 -0800758static inline void
759set_cpu_possible(unsigned int cpu, bool possible)
760{
761 if (possible)
762 cpumask_set_cpu(cpu, &__cpu_possible_mask);
763 else
764 cpumask_clear_cpu(cpu, &__cpu_possible_mask);
765}
766
767static inline void
768set_cpu_present(unsigned int cpu, bool present)
769{
770 if (present)
771 cpumask_set_cpu(cpu, &__cpu_present_mask);
772 else
773 cpumask_clear_cpu(cpu, &__cpu_present_mask);
774}
775
776static inline void
777set_cpu_online(unsigned int cpu, bool online)
778{
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100779 if (online)
Rasmus Villemoes94256762016-01-20 15:00:28 -0800780 cpumask_set_cpu(cpu, &__cpu_online_mask);
Peter Zijlstra (Intel)e9d867a2016-03-10 12:54:08 +0100781 else
Rasmus Villemoes94256762016-01-20 15:00:28 -0800782 cpumask_clear_cpu(cpu, &__cpu_online_mask);
Rasmus Villemoes94256762016-01-20 15:00:28 -0800783}
784
785static inline void
786set_cpu_active(unsigned int cpu, bool active)
787{
788 if (active)
789 cpumask_set_cpu(cpu, &__cpu_active_mask);
790 else
791 cpumask_clear_cpu(cpu, &__cpu_active_mask);
792}
793
Olav Haugan99cd46a2016-05-29 19:56:37 -0700794static inline void
795set_cpu_isolated(unsigned int cpu, bool isolated)
796{
797 if (isolated)
798 cpumask_set_cpu(cpu, &__cpu_isolated_mask);
799 else
800 cpumask_clear_cpu(cpu, &__cpu_isolated_mask);
801}
802
Rasmus Villemoes94256762016-01-20 15:00:28 -0800803
Rusty Russell6ba2ef72009-09-24 09:34:53 -0600804/**
805 * to_cpumask - convert an NR_CPUS bitmap to a struct cpumask *
806 * @bitmap: the bitmap
807 *
808 * There are a few places where cpumask_var_t isn't appropriate and
809 * static cpumasks must be used (eg. very early boot), yet we don't
810 * expose the definition of 'struct cpumask'.
811 *
812 * This does the conversion, and can be used as a constant initializer.
813 */
814#define to_cpumask(bitmap) \
815 ((struct cpumask *)(1 ? (bitmap) \
816 : (void *)sizeof(__check_is_bitmap(bitmap))))
817
818static inline int __check_is_bitmap(const unsigned long *bitmap)
819{
820 return 1;
821}
822
823/*
824 * Special-case data structure for "single bit set only" constant CPU masks.
825 *
826 * We pre-generate all the 64 (or 32) possible bit positions, with enough
827 * padding to the left and the right, and return the constant pointer
828 * appropriately offset.
829 */
830extern const unsigned long
831 cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)];
832
833static inline const struct cpumask *get_cpu_mask(unsigned int cpu)
834{
835 const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG];
836 p -= cpu / BITS_PER_LONG;
837 return to_cpumask(p);
838}
839
840#define cpu_is_offline(cpu) unlikely(!cpu_online(cpu))
841
842#if NR_CPUS <= BITS_PER_LONG
843#define CPU_BITS_ALL \
844{ \
Rusty Russell9941a382015-03-05 10:49:19 +1030845 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
Rusty Russell6ba2ef72009-09-24 09:34:53 -0600846}
847
848#else /* NR_CPUS > BITS_PER_LONG */
849
850#define CPU_BITS_ALL \
851{ \
852 [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \
Rusty Russell9941a382015-03-05 10:49:19 +1030853 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
Rusty Russell6ba2ef72009-09-24 09:34:53 -0600854}
855#endif /* NR_CPUS > BITS_PER_LONG */
856
Sudeep Holla5aaba362014-09-30 14:48:22 +0100857/**
858 * cpumap_print_to_pagebuf - copies the cpumask into the buffer either
859 * as comma-separated list of cpus or hex values of cpumask
860 * @list: indicates whether the cpumap must be list
861 * @mask: the cpumask to copy
862 * @buf: the buffer to copy into
863 *
864 * Returns the length of the (null-terminated) @buf string, zero if
865 * nothing is copied.
866 */
867static inline ssize_t
868cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask)
869{
870 return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask),
Tejun Heo513e3d22015-02-13 14:36:50 -0800871 nr_cpu_ids);
Sudeep Holla5aaba362014-09-30 14:48:22 +0100872}
873
Rusty Russell9941a382015-03-05 10:49:19 +1030874#if NR_CPUS <= BITS_PER_LONG
875#define CPU_MASK_ALL \
876(cpumask_t) { { \
877 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
878} }
879#else
880#define CPU_MASK_ALL \
881(cpumask_t) { { \
882 [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \
883 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
884} }
885#endif /* NR_CPUS > BITS_PER_LONG */
886
887#define CPU_MASK_NONE \
888(cpumask_t) { { \
889 [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \
890} }
891
Rusty Russell15277812015-04-16 12:33:51 +0930892#define CPU_MASK_CPU0 \
893(cpumask_t) { { \
894 [0] = 1UL \
895} }
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897#endif /* __LINUX_CPUMASK_H */