1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_CPUMASK_H
3 #define __LINUX_CPUMASK_H
6 * Cpumasks provide a bitmap suitable for representing the
7 * set of CPU's in a system, one bit position per CPU number. In general,
8 * only nr_cpu_ids (<= NR_CPUS) bits are valid.
10 #include <linux/kernel.h>
11 #include <linux/threads.h>
12 #include <linux/bitmap.h>
13 #include <linux/atomic.h>
14 #include <linux/bug.h>
15 #include <linux/gfp_types.h>
16 #include <linux/numa.h>
18 /* Don't assign or return these: may not be this big! */
19 typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t;
22 * cpumask_bits - get the bits in a cpumask
23 * @maskp: the struct cpumask *
25 * You should only assume nr_cpu_ids bits of this mask are valid. This is
26 * a macro so it's const-correct.
28 #define cpumask_bits(maskp) ((maskp)->bits)
31 * cpumask_pr_args - printf args to output a cpumask
32 * @maskp: cpumask to be printed
34 * Can be used to provide arguments for '%*pb[l]' when printing a cpumask.
36 #define cpumask_pr_args(maskp) nr_cpu_ids, cpumask_bits(maskp)
38 #if (NR_CPUS == 1) || defined(CONFIG_FORCE_NR_CPUS)
39 #define nr_cpu_ids ((unsigned int)NR_CPUS)
41 extern unsigned int nr_cpu_ids;
44 static inline void set_nr_cpu_ids(unsigned int nr)
46 #if (NR_CPUS == 1) || defined(CONFIG_FORCE_NR_CPUS)
47 WARN_ON(nr != nr_cpu_ids);
54 * We have several different "preferred sizes" for the cpumask
55 * operations, depending on operation.
57 * For example, the bitmap scanning and operating operations have
58 * optimized routines that work for the single-word case, but only when
59 * the size is constant. So if NR_CPUS fits in one single word, we are
60 * better off using that small constant, in order to trigger the
61 * optimized bit finding. That is 'small_cpumask_size'.
63 * The clearing and copying operations will similarly perform better
64 * with a constant size, but we limit that size arbitrarily to four
65 * words. We call this 'large_cpumask_size'.
67 * Finally, some operations just want the exact limit, either because
68 * they set bits or just don't have any faster fixed-sized versions. We
69 * call this just 'nr_cpumask_size'.
71 * Note that these optional constants are always guaranteed to be at
72 * least as big as 'nr_cpu_ids' itself is, and all our cpumask
73 * allocations are at least that size (see cpumask_size()). The
74 * optimization comes from being able to potentially use a compile-time
75 * constant instead of a run-time generated exact number of CPUs.
77 #if NR_CPUS <= BITS_PER_LONG
78 #define small_cpumask_bits ((unsigned int)NR_CPUS)
79 #define large_cpumask_bits ((unsigned int)NR_CPUS)
80 #elif NR_CPUS <= 4*BITS_PER_LONG
81 #define small_cpumask_bits nr_cpu_ids
82 #define large_cpumask_bits ((unsigned int)NR_CPUS)
84 #define small_cpumask_bits nr_cpu_ids
85 #define large_cpumask_bits nr_cpu_ids
87 #define nr_cpumask_bits nr_cpu_ids
90 * The following particular system cpumasks and operations manage
91 * possible, present, active and online cpus.
93 * cpu_possible_mask- has bit 'cpu' set iff cpu is populatable
94 * cpu_present_mask - has bit 'cpu' set iff cpu is populated
95 * cpu_online_mask - has bit 'cpu' set iff cpu available to scheduler
96 * cpu_active_mask - has bit 'cpu' set iff cpu available to migration
98 * If !CONFIG_HOTPLUG_CPU, present == possible, and active == online.
100 * The cpu_possible_mask is fixed at boot time, as the set of CPU id's
101 * that it is possible might ever be plugged in at anytime during the
102 * life of that system boot. The cpu_present_mask is dynamic(*),
103 * representing which CPUs are currently plugged in. And
104 * cpu_online_mask is the dynamic subset of cpu_present_mask,
105 * indicating those CPUs available for scheduling.
107 * If HOTPLUG is enabled, then cpu_present_mask varies dynamically,
108 * depending on what ACPI reports as currently plugged in, otherwise
109 * cpu_present_mask is just a copy of cpu_possible_mask.
111 * (*) Well, cpu_present_mask is dynamic in the hotplug case. If not
112 * hotplug, it's a copy of cpu_possible_mask, hence fixed at boot.
115 * 1) UP arch's (NR_CPUS == 1, CONFIG_SMP not defined) hardcode
116 * assumption that their single CPU is online. The UP
117 * cpu_{online,possible,present}_masks are placebos. Changing them
118 * will have no useful affect on the following num_*_cpus()
119 * and cpu_*() macros in the UP case. This ugliness is a UP
120 * optimization - don't waste any instructions or memory references
121 * asking if you're online or how many CPUs there are if there is
125 extern struct cpumask __cpu_possible_mask;
126 extern struct cpumask __cpu_online_mask;
127 extern struct cpumask __cpu_present_mask;
128 extern struct cpumask __cpu_active_mask;
129 extern struct cpumask __cpu_dying_mask;
130 #define cpu_possible_mask ((const struct cpumask *)&__cpu_possible_mask)
131 #define cpu_online_mask ((const struct cpumask *)&__cpu_online_mask)
132 #define cpu_present_mask ((const struct cpumask *)&__cpu_present_mask)
133 #define cpu_active_mask ((const struct cpumask *)&__cpu_active_mask)
134 #define cpu_dying_mask ((const struct cpumask *)&__cpu_dying_mask)
136 extern atomic_t __num_online_cpus;
138 extern cpumask_t cpus_booted_once_mask;
140 static __always_inline void cpu_max_bits_warn(unsigned int cpu, unsigned int bits)
142 #ifdef CONFIG_DEBUG_PER_CPU_MAPS
143 WARN_ON_ONCE(cpu >= bits);
144 #endif /* CONFIG_DEBUG_PER_CPU_MAPS */
147 /* verify cpu argument to cpumask_* operators */
148 static __always_inline unsigned int cpumask_check(unsigned int cpu)
150 cpu_max_bits_warn(cpu, nr_cpumask_bits);
155 * cpumask_first - get the first cpu in a cpumask
156 * @srcp: the cpumask pointer
158 * Returns >= nr_cpu_ids if no cpus set.
160 static inline unsigned int cpumask_first(const struct cpumask *srcp)
162 return find_first_bit(cpumask_bits(srcp), small_cpumask_bits);
166 * cpumask_first_zero - get the first unset cpu in a cpumask
167 * @srcp: the cpumask pointer
169 * Returns >= nr_cpu_ids if all cpus are set.
171 static inline unsigned int cpumask_first_zero(const struct cpumask *srcp)
173 return find_first_zero_bit(cpumask_bits(srcp), small_cpumask_bits);
177 * cpumask_first_and - return the first cpu from *srcp1 & *srcp2
178 * @src1p: the first input
179 * @src2p: the second input
181 * Returns >= nr_cpu_ids if no cpus set in both. See also cpumask_next_and().
184 unsigned int cpumask_first_and(const struct cpumask *srcp1, const struct cpumask *srcp2)
186 return find_first_and_bit(cpumask_bits(srcp1), cpumask_bits(srcp2), small_cpumask_bits);
190 * cpumask_last - get the last CPU in a cpumask
191 * @srcp: - the cpumask pointer
193 * Returns >= nr_cpumask_bits if no CPUs set.
195 static inline unsigned int cpumask_last(const struct cpumask *srcp)
197 return find_last_bit(cpumask_bits(srcp), small_cpumask_bits);
201 * cpumask_next - get the next cpu in a cpumask
202 * @n: the cpu prior to the place to search (ie. return will be > @n)
203 * @srcp: the cpumask pointer
205 * Returns >= nr_cpu_ids if no further cpus set.
208 unsigned int cpumask_next(int n, const struct cpumask *srcp)
210 /* -1 is a legal arg here. */
213 return find_next_bit(cpumask_bits(srcp), small_cpumask_bits, n + 1);
217 * cpumask_next_zero - get the next unset cpu in a cpumask
218 * @n: the cpu prior to the place to search (ie. return will be > @n)
219 * @srcp: the cpumask pointer
221 * Returns >= nr_cpu_ids if no further cpus unset.
223 static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp)
225 /* -1 is a legal arg here. */
228 return find_next_zero_bit(cpumask_bits(srcp), small_cpumask_bits, n+1);
232 /* Uniprocessor: there is only one valid CPU */
233 static inline unsigned int cpumask_local_spread(unsigned int i, int node)
238 static inline unsigned int cpumask_any_and_distribute(const struct cpumask *src1p,
239 const struct cpumask *src2p)
241 return cpumask_first_and(src1p, src2p);
244 static inline unsigned int cpumask_any_distribute(const struct cpumask *srcp)
246 return cpumask_first(srcp);
249 unsigned int cpumask_local_spread(unsigned int i, int node);
250 unsigned int cpumask_any_and_distribute(const struct cpumask *src1p,
251 const struct cpumask *src2p);
252 unsigned int cpumask_any_distribute(const struct cpumask *srcp);
256 * cpumask_next_and - get the next cpu in *src1p & *src2p
257 * @n: the cpu prior to the place to search (ie. return will be > @n)
258 * @src1p: the first cpumask pointer
259 * @src2p: the second cpumask pointer
261 * Returns >= nr_cpu_ids if no further cpus set in both.
264 unsigned int cpumask_next_and(int n, const struct cpumask *src1p,
265 const struct cpumask *src2p)
267 /* -1 is a legal arg here. */
270 return find_next_and_bit(cpumask_bits(src1p), cpumask_bits(src2p),
271 small_cpumask_bits, n + 1);
275 * for_each_cpu - iterate over every cpu in a mask
276 * @cpu: the (optionally unsigned) integer iterator
277 * @mask: the cpumask pointer
279 * After the loop, cpu is >= nr_cpu_ids.
281 #define for_each_cpu(cpu, mask) \
282 for_each_set_bit(cpu, cpumask_bits(mask), small_cpumask_bits)
286 unsigned int cpumask_next_wrap(int n, const struct cpumask *mask, int start, bool wrap)
288 cpumask_check(start);
293 * Return the first available CPU when wrapping, or when starting before cpu0,
294 * since there is only one valid option.
297 return nr_cpumask_bits;
299 return cpumask_first(mask);
302 unsigned int __pure cpumask_next_wrap(int n, const struct cpumask *mask, int start, bool wrap);
306 * for_each_cpu_wrap - iterate over every cpu in a mask, starting at a specified location
307 * @cpu: the (optionally unsigned) integer iterator
308 * @mask: the cpumask pointer
309 * @start: the start location
311 * The implementation does not assume any bit in @mask is set (including @start).
313 * After the loop, cpu is >= nr_cpu_ids.
315 #define for_each_cpu_wrap(cpu, mask, start) \
316 for_each_set_bit_wrap(cpu, cpumask_bits(mask), small_cpumask_bits, start)
319 * for_each_cpu_and - iterate over every cpu in both masks
320 * @cpu: the (optionally unsigned) integer iterator
321 * @mask1: the first cpumask pointer
322 * @mask2: the second cpumask pointer
324 * This saves a temporary CPU mask in many places. It is equivalent to:
325 * struct cpumask tmp;
326 * cpumask_and(&tmp, &mask1, &mask2);
327 * for_each_cpu(cpu, &tmp)
330 * After the loop, cpu is >= nr_cpu_ids.
332 #define for_each_cpu_and(cpu, mask1, mask2) \
333 for_each_and_bit(cpu, cpumask_bits(mask1), cpumask_bits(mask2), small_cpumask_bits)
336 * for_each_cpu_andnot - iterate over every cpu present in one mask, excluding
337 * those present in another.
338 * @cpu: the (optionally unsigned) integer iterator
339 * @mask1: the first cpumask pointer
340 * @mask2: the second cpumask pointer
342 * This saves a temporary CPU mask in many places. It is equivalent to:
343 * struct cpumask tmp;
344 * cpumask_andnot(&tmp, &mask1, &mask2);
345 * for_each_cpu(cpu, &tmp)
348 * After the loop, cpu is >= nr_cpu_ids.
350 #define for_each_cpu_andnot(cpu, mask1, mask2) \
351 for_each_andnot_bit(cpu, cpumask_bits(mask1), cpumask_bits(mask2), small_cpumask_bits)
354 * cpumask_any_but - return a "random" in a cpumask, but not this one.
355 * @mask: the cpumask to search
356 * @cpu: the cpu to ignore.
358 * Often used to find any cpu but smp_processor_id() in a mask.
359 * Returns >= nr_cpu_ids if no cpus set.
362 unsigned int cpumask_any_but(const struct cpumask *mask, unsigned int cpu)
367 for_each_cpu(i, mask)
374 * cpumask_nth - get the first cpu in a cpumask
375 * @srcp: the cpumask pointer
376 * @cpu: the N'th cpu to find, starting from 0
378 * Returns >= nr_cpu_ids if such cpu doesn't exist.
380 static inline unsigned int cpumask_nth(unsigned int cpu, const struct cpumask *srcp)
382 return find_nth_bit(cpumask_bits(srcp), small_cpumask_bits, cpumask_check(cpu));
386 * cpumask_nth_and - get the first cpu in 2 cpumasks
387 * @srcp1: the cpumask pointer
388 * @srcp2: the cpumask pointer
389 * @cpu: the N'th cpu to find, starting from 0
391 * Returns >= nr_cpu_ids if such cpu doesn't exist.
394 unsigned int cpumask_nth_and(unsigned int cpu, const struct cpumask *srcp1,
395 const struct cpumask *srcp2)
397 return find_nth_and_bit(cpumask_bits(srcp1), cpumask_bits(srcp2),
398 small_cpumask_bits, cpumask_check(cpu));
402 * cpumask_nth_andnot - get the first cpu set in 1st cpumask, and clear in 2nd.
403 * @srcp1: the cpumask pointer
404 * @srcp2: the cpumask pointer
405 * @cpu: the N'th cpu to find, starting from 0
407 * Returns >= nr_cpu_ids if such cpu doesn't exist.
410 unsigned int cpumask_nth_andnot(unsigned int cpu, const struct cpumask *srcp1,
411 const struct cpumask *srcp2)
413 return find_nth_andnot_bit(cpumask_bits(srcp1), cpumask_bits(srcp2),
414 small_cpumask_bits, cpumask_check(cpu));
418 * cpumask_nth_and_andnot - get the Nth cpu set in 1st and 2nd cpumask, and clear in 3rd.
419 * @srcp1: the cpumask pointer
420 * @srcp2: the cpumask pointer
421 * @srcp3: the cpumask pointer
422 * @cpu: the N'th cpu to find, starting from 0
424 * Returns >= nr_cpu_ids if such cpu doesn't exist.
426 static __always_inline
427 unsigned int cpumask_nth_and_andnot(unsigned int cpu, const struct cpumask *srcp1,
428 const struct cpumask *srcp2,
429 const struct cpumask *srcp3)
431 return find_nth_and_andnot_bit(cpumask_bits(srcp1),
434 small_cpumask_bits, cpumask_check(cpu));
437 #define CPU_BITS_NONE \
439 [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \
442 #define CPU_BITS_CPU0 \
448 * cpumask_set_cpu - set a cpu in a cpumask
449 * @cpu: cpu number (< nr_cpu_ids)
450 * @dstp: the cpumask pointer
452 static __always_inline void cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp)
454 set_bit(cpumask_check(cpu), cpumask_bits(dstp));
457 static __always_inline void __cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp)
459 __set_bit(cpumask_check(cpu), cpumask_bits(dstp));
464 * cpumask_clear_cpu - clear a cpu in a cpumask
465 * @cpu: cpu number (< nr_cpu_ids)
466 * @dstp: the cpumask pointer
468 static __always_inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp)
470 clear_bit(cpumask_check(cpu), cpumask_bits(dstp));
473 static __always_inline void __cpumask_clear_cpu(int cpu, struct cpumask *dstp)
475 __clear_bit(cpumask_check(cpu), cpumask_bits(dstp));
479 * cpumask_test_cpu - test for a cpu in a cpumask
480 * @cpu: cpu number (< nr_cpu_ids)
481 * @cpumask: the cpumask pointer
483 * Returns true if @cpu is set in @cpumask, else returns false
485 static __always_inline bool cpumask_test_cpu(int cpu, const struct cpumask *cpumask)
487 return test_bit(cpumask_check(cpu), cpumask_bits((cpumask)));
491 * cpumask_test_and_set_cpu - atomically test and set a cpu in a cpumask
492 * @cpu: cpu number (< nr_cpu_ids)
493 * @cpumask: the cpumask pointer
495 * Returns true if @cpu is set in old bitmap of @cpumask, else returns false
497 * test_and_set_bit wrapper for cpumasks.
499 static __always_inline bool cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask)
501 return test_and_set_bit(cpumask_check(cpu), cpumask_bits(cpumask));
505 * cpumask_test_and_clear_cpu - atomically test and clear a cpu in a cpumask
506 * @cpu: cpu number (< nr_cpu_ids)
507 * @cpumask: the cpumask pointer
509 * Returns true if @cpu is set in old bitmap of @cpumask, else returns false
511 * test_and_clear_bit wrapper for cpumasks.
513 static __always_inline bool cpumask_test_and_clear_cpu(int cpu, struct cpumask *cpumask)
515 return test_and_clear_bit(cpumask_check(cpu), cpumask_bits(cpumask));
519 * cpumask_setall - set all cpus (< nr_cpu_ids) in a cpumask
520 * @dstp: the cpumask pointer
522 * Note: since we set bits, we should use the tighter 'bitmap_set()' with
523 * the eact number of bits, not 'bitmap_fill()' that will fill past the
526 static inline void cpumask_setall(struct cpumask *dstp)
528 bitmap_set(cpumask_bits(dstp), 0, nr_cpumask_bits);
532 * cpumask_clear - clear all cpus (< nr_cpu_ids) in a cpumask
533 * @dstp: the cpumask pointer
535 static inline void cpumask_clear(struct cpumask *dstp)
537 bitmap_zero(cpumask_bits(dstp), large_cpumask_bits);
541 * cpumask_and - *dstp = *src1p & *src2p
542 * @dstp: the cpumask result
543 * @src1p: the first input
544 * @src2p: the second input
546 * If *@dstp is empty, returns false, else returns true
548 static inline bool cpumask_and(struct cpumask *dstp,
549 const struct cpumask *src1p,
550 const struct cpumask *src2p)
552 return bitmap_and(cpumask_bits(dstp), cpumask_bits(src1p),
553 cpumask_bits(src2p), small_cpumask_bits);
557 * cpumask_or - *dstp = *src1p | *src2p
558 * @dstp: the cpumask result
559 * @src1p: the first input
560 * @src2p: the second input
562 static inline void cpumask_or(struct cpumask *dstp, const struct cpumask *src1p,
563 const struct cpumask *src2p)
565 bitmap_or(cpumask_bits(dstp), cpumask_bits(src1p),
566 cpumask_bits(src2p), small_cpumask_bits);
570 * cpumask_xor - *dstp = *src1p ^ *src2p
571 * @dstp: the cpumask result
572 * @src1p: the first input
573 * @src2p: the second input
575 static inline void cpumask_xor(struct cpumask *dstp,
576 const struct cpumask *src1p,
577 const struct cpumask *src2p)
579 bitmap_xor(cpumask_bits(dstp), cpumask_bits(src1p),
580 cpumask_bits(src2p), small_cpumask_bits);
584 * cpumask_andnot - *dstp = *src1p & ~*src2p
585 * @dstp: the cpumask result
586 * @src1p: the first input
587 * @src2p: the second input
589 * If *@dstp is empty, returns false, else returns true
591 static inline bool cpumask_andnot(struct cpumask *dstp,
592 const struct cpumask *src1p,
593 const struct cpumask *src2p)
595 return bitmap_andnot(cpumask_bits(dstp), cpumask_bits(src1p),
596 cpumask_bits(src2p), small_cpumask_bits);
600 * cpumask_equal - *src1p == *src2p
601 * @src1p: the first input
602 * @src2p: the second input
604 static inline bool cpumask_equal(const struct cpumask *src1p,
605 const struct cpumask *src2p)
607 return bitmap_equal(cpumask_bits(src1p), cpumask_bits(src2p),
612 * cpumask_or_equal - *src1p | *src2p == *src3p
613 * @src1p: the first input
614 * @src2p: the second input
615 * @src3p: the third input
617 static inline bool cpumask_or_equal(const struct cpumask *src1p,
618 const struct cpumask *src2p,
619 const struct cpumask *src3p)
621 return bitmap_or_equal(cpumask_bits(src1p), cpumask_bits(src2p),
622 cpumask_bits(src3p), small_cpumask_bits);
626 * cpumask_intersects - (*src1p & *src2p) != 0
627 * @src1p: the first input
628 * @src2p: the second input
630 static inline bool cpumask_intersects(const struct cpumask *src1p,
631 const struct cpumask *src2p)
633 return bitmap_intersects(cpumask_bits(src1p), cpumask_bits(src2p),
638 * cpumask_subset - (*src1p & ~*src2p) == 0
639 * @src1p: the first input
640 * @src2p: the second input
642 * Returns true if *@src1p is a subset of *@src2p, else returns false
644 static inline bool cpumask_subset(const struct cpumask *src1p,
645 const struct cpumask *src2p)
647 return bitmap_subset(cpumask_bits(src1p), cpumask_bits(src2p),
652 * cpumask_empty - *srcp == 0
653 * @srcp: the cpumask to that all cpus < nr_cpu_ids are clear.
655 static inline bool cpumask_empty(const struct cpumask *srcp)
657 return bitmap_empty(cpumask_bits(srcp), small_cpumask_bits);
661 * cpumask_full - *srcp == 0xFFFFFFFF...
662 * @srcp: the cpumask to that all cpus < nr_cpu_ids are set.
664 static inline bool cpumask_full(const struct cpumask *srcp)
666 return bitmap_full(cpumask_bits(srcp), nr_cpumask_bits);
670 * cpumask_weight - Count of bits in *srcp
671 * @srcp: the cpumask to count bits (< nr_cpu_ids) in.
673 static inline unsigned int cpumask_weight(const struct cpumask *srcp)
675 return bitmap_weight(cpumask_bits(srcp), small_cpumask_bits);
679 * cpumask_weight_and - Count of bits in (*srcp1 & *srcp2)
680 * @srcp1: the cpumask to count bits (< nr_cpu_ids) in.
681 * @srcp2: the cpumask to count bits (< nr_cpu_ids) in.
683 static inline unsigned int cpumask_weight_and(const struct cpumask *srcp1,
684 const struct cpumask *srcp2)
686 return bitmap_weight_and(cpumask_bits(srcp1), cpumask_bits(srcp2), small_cpumask_bits);
690 * cpumask_shift_right - *dstp = *srcp >> n
691 * @dstp: the cpumask result
692 * @srcp: the input to shift
693 * @n: the number of bits to shift by
695 static inline void cpumask_shift_right(struct cpumask *dstp,
696 const struct cpumask *srcp, int n)
698 bitmap_shift_right(cpumask_bits(dstp), cpumask_bits(srcp), n,
703 * cpumask_shift_left - *dstp = *srcp << n
704 * @dstp: the cpumask result
705 * @srcp: the input to shift
706 * @n: the number of bits to shift by
708 static inline void cpumask_shift_left(struct cpumask *dstp,
709 const struct cpumask *srcp, int n)
711 bitmap_shift_left(cpumask_bits(dstp), cpumask_bits(srcp), n,
716 * cpumask_copy - *dstp = *srcp
718 * @srcp: the input cpumask
720 static inline void cpumask_copy(struct cpumask *dstp,
721 const struct cpumask *srcp)
723 bitmap_copy(cpumask_bits(dstp), cpumask_bits(srcp), large_cpumask_bits);
727 * cpumask_any - pick a "random" cpu from *srcp
728 * @srcp: the input cpumask
730 * Returns >= nr_cpu_ids if no cpus set.
732 #define cpumask_any(srcp) cpumask_first(srcp)
735 * cpumask_any_and - pick a "random" cpu from *mask1 & *mask2
736 * @mask1: the first input cpumask
737 * @mask2: the second input cpumask
739 * Returns >= nr_cpu_ids if no cpus set.
741 #define cpumask_any_and(mask1, mask2) cpumask_first_and((mask1), (mask2))
744 * cpumask_of - the cpumask containing just a given cpu
745 * @cpu: the cpu (<= nr_cpu_ids)
747 #define cpumask_of(cpu) (get_cpu_mask(cpu))
750 * cpumask_parse_user - extract a cpumask from a user string
751 * @buf: the buffer to extract from
752 * @len: the length of the buffer
753 * @dstp: the cpumask to set.
755 * Returns -errno, or 0 for success.
757 static inline int cpumask_parse_user(const char __user *buf, int len,
758 struct cpumask *dstp)
760 return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
764 * cpumask_parselist_user - extract a cpumask from a user string
765 * @buf: the buffer to extract from
766 * @len: the length of the buffer
767 * @dstp: the cpumask to set.
769 * Returns -errno, or 0 for success.
771 static inline int cpumask_parselist_user(const char __user *buf, int len,
772 struct cpumask *dstp)
774 return bitmap_parselist_user(buf, len, cpumask_bits(dstp),
779 * cpumask_parse - extract a cpumask from a string
780 * @buf: the buffer to extract from
781 * @dstp: the cpumask to set.
783 * Returns -errno, or 0 for success.
785 static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
787 return bitmap_parse(buf, UINT_MAX, cpumask_bits(dstp), nr_cpumask_bits);
791 * cpulist_parse - extract a cpumask from a user string of ranges
792 * @buf: the buffer to extract from
793 * @dstp: the cpumask to set.
795 * Returns -errno, or 0 for success.
797 static inline int cpulist_parse(const char *buf, struct cpumask *dstp)
799 return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits);
803 * cpumask_size - size to allocate for a 'struct cpumask' in bytes
805 static inline unsigned int cpumask_size(void)
807 return BITS_TO_LONGS(large_cpumask_bits) * sizeof(long);
811 * cpumask_var_t: struct cpumask for stack usage.
813 * Oh, the wicked games we play! In order to make kernel coding a
814 * little more difficult, we typedef cpumask_var_t to an array or a
815 * pointer: doing &mask on an array is a noop, so it still works.
818 * cpumask_var_t tmpmask;
819 * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
822 * ... use 'tmpmask' like a normal struct cpumask * ...
824 * free_cpumask_var(tmpmask);
827 * However, one notable exception is there. alloc_cpumask_var() allocates
828 * only nr_cpumask_bits bits (in the other hand, real cpumask_t always has
829 * NR_CPUS bits). Therefore you don't have to dereference cpumask_var_t.
831 * cpumask_var_t tmpmask;
832 * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL))
837 * This code makes NR_CPUS length memcopy and brings to a memory corruption.
838 * cpumask_copy() provide safe copy functionality.
840 * Note that there is another evil here: If you define a cpumask_var_t
841 * as a percpu variable then the way to obtain the address of the cpumask
842 * structure differently influences what this_cpu_* operation needs to be
843 * used. Please use this_cpu_cpumask_var_t in those cases. The direct use
844 * of this_cpu_ptr() or this_cpu_read() will lead to failures when the
845 * other type of cpumask_var_t implementation is configured.
847 * Please also note that __cpumask_var_read_mostly can be used to declare
848 * a cpumask_var_t variable itself (not its content) as read mostly.
850 #ifdef CONFIG_CPUMASK_OFFSTACK
851 typedef struct cpumask *cpumask_var_t;
853 #define this_cpu_cpumask_var_ptr(x) this_cpu_read(x)
854 #define __cpumask_var_read_mostly __read_mostly
856 bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node);
859 bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node)
861 return alloc_cpumask_var_node(mask, flags | __GFP_ZERO, node);
865 * alloc_cpumask_var - allocate a struct cpumask
866 * @mask: pointer to cpumask_var_t where the cpumask is returned
869 * Only defined when CONFIG_CPUMASK_OFFSTACK=y, otherwise is
870 * a nop returning a constant 1 (in <linux/cpumask.h>).
872 * See alloc_cpumask_var_node.
875 bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
877 return alloc_cpumask_var_node(mask, flags, NUMA_NO_NODE);
881 bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
883 return alloc_cpumask_var(mask, flags | __GFP_ZERO);
886 void alloc_bootmem_cpumask_var(cpumask_var_t *mask);
887 void free_cpumask_var(cpumask_var_t mask);
888 void free_bootmem_cpumask_var(cpumask_var_t mask);
890 static inline bool cpumask_available(cpumask_var_t mask)
896 typedef struct cpumask cpumask_var_t[1];
898 #define this_cpu_cpumask_var_ptr(x) this_cpu_ptr(x)
899 #define __cpumask_var_read_mostly
901 static inline bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
906 static inline bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags,
912 static inline bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags)
914 cpumask_clear(*mask);
918 static inline bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags,
921 cpumask_clear(*mask);
925 static inline void alloc_bootmem_cpumask_var(cpumask_var_t *mask)
929 static inline void free_cpumask_var(cpumask_var_t mask)
933 static inline void free_bootmem_cpumask_var(cpumask_var_t mask)
937 static inline bool cpumask_available(cpumask_var_t mask)
941 #endif /* CONFIG_CPUMASK_OFFSTACK */
943 /* It's common to want to use cpu_all_mask in struct member initializers,
944 * so it has to refer to an address rather than a pointer. */
945 extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS);
946 #define cpu_all_mask to_cpumask(cpu_all_bits)
948 /* First bits of cpu_bit_bitmap are in fact unset. */
949 #define cpu_none_mask to_cpumask(cpu_bit_bitmap[0])
952 /* Uniprocessor: the possible/online/present masks are always "1" */
953 #define for_each_possible_cpu(cpu) for ((cpu) = 0; (cpu) < 1; (cpu)++)
954 #define for_each_online_cpu(cpu) for ((cpu) = 0; (cpu) < 1; (cpu)++)
955 #define for_each_present_cpu(cpu) for ((cpu) = 0; (cpu) < 1; (cpu)++)
957 #define for_each_possible_cpu(cpu) for_each_cpu((cpu), cpu_possible_mask)
958 #define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask)
959 #define for_each_present_cpu(cpu) for_each_cpu((cpu), cpu_present_mask)
962 /* Wrappers for arch boot code to manipulate normally-constant masks */
963 void init_cpu_present(const struct cpumask *src);
964 void init_cpu_possible(const struct cpumask *src);
965 void init_cpu_online(const struct cpumask *src);
967 static inline void reset_cpu_possible_mask(void)
969 bitmap_zero(cpumask_bits(&__cpu_possible_mask), NR_CPUS);
973 set_cpu_possible(unsigned int cpu, bool possible)
976 cpumask_set_cpu(cpu, &__cpu_possible_mask);
978 cpumask_clear_cpu(cpu, &__cpu_possible_mask);
982 set_cpu_present(unsigned int cpu, bool present)
985 cpumask_set_cpu(cpu, &__cpu_present_mask);
987 cpumask_clear_cpu(cpu, &__cpu_present_mask);
990 void set_cpu_online(unsigned int cpu, bool online);
993 set_cpu_active(unsigned int cpu, bool active)
996 cpumask_set_cpu(cpu, &__cpu_active_mask);
998 cpumask_clear_cpu(cpu, &__cpu_active_mask);
1002 set_cpu_dying(unsigned int cpu, bool dying)
1005 cpumask_set_cpu(cpu, &__cpu_dying_mask);
1007 cpumask_clear_cpu(cpu, &__cpu_dying_mask);
1011 * to_cpumask - convert an NR_CPUS bitmap to a struct cpumask *
1012 * @bitmap: the bitmap
1014 * There are a few places where cpumask_var_t isn't appropriate and
1015 * static cpumasks must be used (eg. very early boot), yet we don't
1016 * expose the definition of 'struct cpumask'.
1018 * This does the conversion, and can be used as a constant initializer.
1020 #define to_cpumask(bitmap) \
1021 ((struct cpumask *)(1 ? (bitmap) \
1022 : (void *)sizeof(__check_is_bitmap(bitmap))))
1024 static inline int __check_is_bitmap(const unsigned long *bitmap)
1030 * Special-case data structure for "single bit set only" constant CPU masks.
1032 * We pre-generate all the 64 (or 32) possible bit positions, with enough
1033 * padding to the left and the right, and return the constant pointer
1034 * appropriately offset.
1036 extern const unsigned long
1037 cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)];
1039 static inline const struct cpumask *get_cpu_mask(unsigned int cpu)
1041 const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG];
1042 p -= cpu / BITS_PER_LONG;
1043 return to_cpumask(p);
1048 * num_online_cpus() - Read the number of online CPUs
1050 * Despite the fact that __num_online_cpus is of type atomic_t, this
1051 * interface gives only a momentary snapshot and is not protected against
1052 * concurrent CPU hotplug operations unless invoked from a cpuhp_lock held
1055 static __always_inline unsigned int num_online_cpus(void)
1057 return arch_atomic_read(&__num_online_cpus);
1059 #define num_possible_cpus() cpumask_weight(cpu_possible_mask)
1060 #define num_present_cpus() cpumask_weight(cpu_present_mask)
1061 #define num_active_cpus() cpumask_weight(cpu_active_mask)
1063 static inline bool cpu_online(unsigned int cpu)
1065 return cpumask_test_cpu(cpu, cpu_online_mask);
1068 static inline bool cpu_possible(unsigned int cpu)
1070 return cpumask_test_cpu(cpu, cpu_possible_mask);
1073 static inline bool cpu_present(unsigned int cpu)
1075 return cpumask_test_cpu(cpu, cpu_present_mask);
1078 static inline bool cpu_active(unsigned int cpu)
1080 return cpumask_test_cpu(cpu, cpu_active_mask);
1083 static inline bool cpu_dying(unsigned int cpu)
1085 return cpumask_test_cpu(cpu, cpu_dying_mask);
1090 #define num_online_cpus() 1U
1091 #define num_possible_cpus() 1U
1092 #define num_present_cpus() 1U
1093 #define num_active_cpus() 1U
1095 static inline bool cpu_online(unsigned int cpu)
1100 static inline bool cpu_possible(unsigned int cpu)
1105 static inline bool cpu_present(unsigned int cpu)
1110 static inline bool cpu_active(unsigned int cpu)
1115 static inline bool cpu_dying(unsigned int cpu)
1120 #endif /* NR_CPUS > 1 */
1122 #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu))
1124 #if NR_CPUS <= BITS_PER_LONG
1125 #define CPU_BITS_ALL \
1127 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
1130 #else /* NR_CPUS > BITS_PER_LONG */
1132 #define CPU_BITS_ALL \
1134 [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \
1135 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
1137 #endif /* NR_CPUS > BITS_PER_LONG */
1140 * cpumap_print_to_pagebuf - copies the cpumask into the buffer either
1141 * as comma-separated list of cpus or hex values of cpumask
1142 * @list: indicates whether the cpumap must be list
1143 * @mask: the cpumask to copy
1144 * @buf: the buffer to copy into
1146 * Returns the length of the (null-terminated) @buf string, zero if
1147 * nothing is copied.
1149 static inline ssize_t
1150 cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask)
1152 return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask),
1157 * cpumap_print_bitmask_to_buf - copies the cpumask into the buffer as
1158 * hex values of cpumask
1160 * @buf: the buffer to copy into
1161 * @mask: the cpumask to copy
1162 * @off: in the string from which we are copying, we copy to @buf
1163 * @count: the maximum number of bytes to print
1165 * The function prints the cpumask into the buffer as hex values of
1166 * cpumask; Typically used by bin_attribute to export cpumask bitmask
1169 * Returns the length of how many bytes have been copied, excluding
1172 static inline ssize_t
1173 cpumap_print_bitmask_to_buf(char *buf, const struct cpumask *mask,
1174 loff_t off, size_t count)
1176 return bitmap_print_bitmask_to_buf(buf, cpumask_bits(mask),
1177 nr_cpu_ids, off, count) - 1;
1181 * cpumap_print_list_to_buf - copies the cpumask into the buffer as
1182 * comma-separated list of cpus
1184 * Everything is same with the above cpumap_print_bitmask_to_buf()
1185 * except the print format.
1187 static inline ssize_t
1188 cpumap_print_list_to_buf(char *buf, const struct cpumask *mask,
1189 loff_t off, size_t count)
1191 return bitmap_print_list_to_buf(buf, cpumask_bits(mask),
1192 nr_cpu_ids, off, count) - 1;
1195 #if NR_CPUS <= BITS_PER_LONG
1196 #define CPU_MASK_ALL \
1198 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
1201 #define CPU_MASK_ALL \
1203 [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \
1204 [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \
1206 #endif /* NR_CPUS > BITS_PER_LONG */
1208 #define CPU_MASK_NONE \
1210 [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \
1213 #define CPU_MASK_CPU0 \
1219 * Provide a valid theoretical max size for cpumap and cpulist sysfs files
1220 * to avoid breaking userspace which may allocate a buffer based on the size
1221 * reported by e.g. fstat.
1223 * for cpumap NR_CPUS * 9/32 - 1 should be an exact length.
1225 * For cpulist 7 is (ceil(log10(NR_CPUS)) + 1) allowing for NR_CPUS to be up
1226 * to 2 orders of magnitude larger than 8192. And then we divide by 2 to
1227 * cover a worst-case of every other cpu being on one of two nodes for a
1228 * very large NR_CPUS.
1230 * Use PAGE_SIZE as a minimum for smaller configurations while avoiding
1231 * unsigned comparison to -1.
1233 #define CPUMAP_FILE_MAX_BYTES (((NR_CPUS * 9)/32 > PAGE_SIZE) \
1234 ? (NR_CPUS * 9)/32 - 1 : PAGE_SIZE)
1235 #define CPULIST_FILE_MAX_BYTES (((NR_CPUS * 7)/2 > PAGE_SIZE) ? (NR_CPUS * 7)/2 : PAGE_SIZE)
1237 #endif /* __LINUX_CPUMASK_H */