Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __LINUX_CPUMASK_H |
| 3 | #define __LINUX_CPUMASK_H |
| 4 | |
| 5 | /* |
| 6 | * Cpumasks provide a bitmap suitable for representing the |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/threads.h> |
| 12 | #include <linux/bitmap.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 13 | #include <linux/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Rusty Russell | cdfdef7 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 15 | /* Don't assign or return these: may not be this big! */ |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 16 | typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 18 | /** |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 19 | * cpumask_bits - get the bits in a cpumask |
| 20 | * @maskp: the struct cpumask * |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 21 | * |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 22 | * You should only assume nr_cpu_ids bits of this mask are valid. This is |
| 23 | * a macro so it's const-correct. |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 24 | */ |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 25 | #define cpumask_bits(maskp) ((maskp)->bits) |
Paul Jackson | 7ea931c | 2008-04-28 02:12:29 -0700 | [diff] [blame] | 26 | |
Tejun Heo | f1bbc03 | 2015-02-13 14:36:57 -0800 | [diff] [blame] | 27 | /** |
| 28 | * cpumask_pr_args - printf args to output a cpumask |
| 29 | * @maskp: cpumask to be printed |
| 30 | * |
| 31 | * Can be used to provide arguments for '%*pb[l]' when printing a cpumask. |
| 32 | */ |
| 33 | #define cpumask_pr_args(maskp) nr_cpu_ids, cpumask_bits(maskp) |
| 34 | |
Mike Travis | 41df0d61 | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 35 | #if NR_CPUS == 1 |
Alexey Dobriyan | 9b130ad | 2017-09-08 16:14:18 -0700 | [diff] [blame] | 36 | #define nr_cpu_ids 1U |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 37 | #else |
Alexey Dobriyan | 9b130ad | 2017-09-08 16:14:18 -0700 | [diff] [blame] | 38 | extern unsigned int nr_cpu_ids; |
Mike Travis | 41df0d61 | 2008-05-12 21:21:13 +0200 | [diff] [blame] | 39 | #endif |
| 40 | |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 41 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 42 | /* Assuming NR_CPUS is huge, a runtime limit is more efficient. Also, |
| 43 | * not all bits may be allocated. */ |
Alexey Dobriyan | 9b130ad | 2017-09-08 16:14:18 -0700 | [diff] [blame] | 44 | #define nr_cpumask_bits nr_cpu_ids |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 45 | #else |
Alexey Dobriyan | c311c79 | 2017-05-08 15:56:15 -0700 | [diff] [blame] | 46 | #define nr_cpumask_bits ((unsigned int)NR_CPUS) |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 47 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * The following particular system cpumasks and operations manage |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 51 | * possible, present, active and online cpus. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | * |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 53 | * cpu_possible_mask- has bit 'cpu' set iff cpu is populatable |
| 54 | * cpu_present_mask - has bit 'cpu' set iff cpu is populated |
| 55 | * cpu_online_mask - has bit 'cpu' set iff cpu available to scheduler |
| 56 | * cpu_active_mask - has bit 'cpu' set iff cpu available to migration |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | * |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 58 | * If !CONFIG_HOTPLUG_CPU, present == possible, and active == online. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | * |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 60 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * all NR_CPUS bits set, otherwise it is just the set of CPUs that |
| 69 | * ACPI reports present at boot. |
| 70 | * |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 71 | * If HOTPLUG is enabled, then cpu_present_mask varies dynamically, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | * depending on what ACPI reports as currently plugged in, otherwise |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 73 | * cpu_present_mask is just a copy of cpu_possible_mask. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 75 | * (*) 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | * |
| 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 Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 81 | * cpu_{online,possible,present}_masks are placebos. Changing them |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | */ |
| 88 | |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 89 | extern struct cpumask __cpu_possible_mask; |
| 90 | extern struct cpumask __cpu_online_mask; |
| 91 | extern struct cpumask __cpu_present_mask; |
| 92 | extern struct cpumask __cpu_active_mask; |
Rasmus Villemoes | 5aec01b | 2016-01-20 15:00:25 -0800 | [diff] [blame] | 93 | #define cpu_possible_mask ((const struct cpumask *)&__cpu_possible_mask) |
| 94 | #define cpu_online_mask ((const struct cpumask *)&__cpu_online_mask) |
| 95 | #define cpu_present_mask ((const struct cpumask *)&__cpu_present_mask) |
| 96 | #define cpu_active_mask ((const struct cpumask *)&__cpu_active_mask) |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | #if NR_CPUS > 1 |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 99 | #define num_online_cpus() cpumask_weight(cpu_online_mask) |
| 100 | #define num_possible_cpus() cpumask_weight(cpu_possible_mask) |
| 101 | #define num_present_cpus() cpumask_weight(cpu_present_mask) |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 102 | #define num_active_cpus() cpumask_weight(cpu_active_mask) |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 103 | #define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask) |
| 104 | #define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask) |
| 105 | #define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask) |
| 106 | #define cpu_active(cpu) cpumask_test_cpu((cpu), cpu_active_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | #else |
Heiko Carstens | 221e3eb | 2010-03-05 13:42:41 -0800 | [diff] [blame] | 108 | #define num_online_cpus() 1U |
| 109 | #define num_possible_cpus() 1U |
| 110 | #define num_present_cpus() 1U |
| 111 | #define num_active_cpus() 1U |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #define cpu_online(cpu) ((cpu) == 0) |
| 113 | #define cpu_possible(cpu) ((cpu) == 0) |
| 114 | #define cpu_present(cpu) ((cpu) == 0) |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 115 | #define cpu_active(cpu) ((cpu) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #endif |
| 117 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 118 | /* verify cpu argument to cpumask_* operators */ |
| 119 | static inline unsigned int cpumask_check(unsigned int cpu) |
| 120 | { |
| 121 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS |
| 122 | WARN_ON_ONCE(cpu >= nr_cpumask_bits); |
| 123 | #endif /* CONFIG_DEBUG_PER_CPU_MAPS */ |
| 124 | return cpu; |
| 125 | } |
| 126 | |
| 127 | #if NR_CPUS == 1 |
Rusty Russell | 984f2f3 | 2008-11-08 20:24:19 +1100 | [diff] [blame] | 128 | /* Uniprocessor. Assume all masks are "1". */ |
| 129 | static inline unsigned int cpumask_first(const struct cpumask *srcp) |
| 130 | { |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | /* Valid inputs for n are -1 and 0. */ |
| 135 | static inline unsigned int cpumask_next(int n, const struct cpumask *srcp) |
| 136 | { |
| 137 | return n+1; |
| 138 | } |
| 139 | |
| 140 | static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp) |
| 141 | { |
| 142 | return n+1; |
| 143 | } |
| 144 | |
| 145 | static inline unsigned int cpumask_next_and(int n, |
| 146 | const struct cpumask *srcp, |
| 147 | const struct cpumask *andp) |
| 148 | { |
| 149 | return n+1; |
| 150 | } |
| 151 | |
| 152 | /* cpu must be a valid cpu, ie 0, so there's no other choice. */ |
| 153 | static inline unsigned int cpumask_any_but(const struct cpumask *mask, |
| 154 | unsigned int cpu) |
| 155 | { |
| 156 | return 1; |
| 157 | } |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 158 | |
Rusty Russell | f36963c | 2015-05-09 03:14:13 +0930 | [diff] [blame] | 159 | static inline unsigned int cpumask_local_spread(unsigned int i, int node) |
Amir Vadai | da91309 | 2014-06-09 10:24:38 +0300 | [diff] [blame] | 160 | { |
Amir Vadai | da91309 | 2014-06-09 10:24:38 +0300 | [diff] [blame] | 161 | return 0; |
| 162 | } |
| 163 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 164 | #define for_each_cpu(cpu, mask) \ |
| 165 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) |
Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 166 | #define for_each_cpu_not(cpu, mask) \ |
| 167 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 168 | #define for_each_cpu_and(cpu, mask, and) \ |
| 169 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask, (void)and) |
| 170 | #else |
| 171 | /** |
| 172 | * cpumask_first - get the first cpu in a cpumask |
| 173 | * @srcp: the cpumask pointer |
| 174 | * |
| 175 | * Returns >= nr_cpu_ids if no cpus set. |
| 176 | */ |
| 177 | static inline unsigned int cpumask_first(const struct cpumask *srcp) |
| 178 | { |
| 179 | return find_first_bit(cpumask_bits(srcp), nr_cpumask_bits); |
| 180 | } |
| 181 | |
Alexey Dobriyan | f22ef33 | 2017-09-08 16:17:15 -0700 | [diff] [blame] | 182 | unsigned int cpumask_next(int n, const struct cpumask *srcp); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 183 | |
| 184 | /** |
| 185 | * cpumask_next_zero - get the next unset cpu in a cpumask |
| 186 | * @n: the cpu prior to the place to search (ie. return will be > @n) |
| 187 | * @srcp: the cpumask pointer |
| 188 | * |
| 189 | * Returns >= nr_cpu_ids if no further cpus unset. |
| 190 | */ |
| 191 | static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp) |
| 192 | { |
| 193 | /* -1 is a legal arg here. */ |
| 194 | if (n != -1) |
| 195 | cpumask_check(n); |
| 196 | return find_next_zero_bit(cpumask_bits(srcp), nr_cpumask_bits, n+1); |
| 197 | } |
| 198 | |
| 199 | int cpumask_next_and(int n, const struct cpumask *, const struct cpumask *); |
| 200 | int cpumask_any_but(const struct cpumask *mask, unsigned int cpu); |
Rusty Russell | f36963c | 2015-05-09 03:14:13 +0930 | [diff] [blame] | 201 | unsigned int cpumask_local_spread(unsigned int i, int node); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 202 | |
Rusty Russell | 984f2f3 | 2008-11-08 20:24:19 +1100 | [diff] [blame] | 203 | /** |
| 204 | * for_each_cpu - iterate over every cpu in a mask |
| 205 | * @cpu: the (optionally unsigned) integer iterator |
| 206 | * @mask: the cpumask pointer |
| 207 | * |
| 208 | * After the loop, cpu is >= nr_cpu_ids. |
| 209 | */ |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 210 | #define for_each_cpu(cpu, mask) \ |
| 211 | for ((cpu) = -1; \ |
| 212 | (cpu) = cpumask_next((cpu), (mask)), \ |
| 213 | (cpu) < nr_cpu_ids;) |
Rusty Russell | 984f2f3 | 2008-11-08 20:24:19 +1100 | [diff] [blame] | 214 | |
| 215 | /** |
Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 216 | * for_each_cpu_not - iterate over every cpu in a complemented mask |
| 217 | * @cpu: the (optionally unsigned) integer iterator |
| 218 | * @mask: the cpumask pointer |
| 219 | * |
| 220 | * After the loop, cpu is >= nr_cpu_ids. |
| 221 | */ |
| 222 | #define for_each_cpu_not(cpu, mask) \ |
| 223 | for ((cpu) = -1; \ |
| 224 | (cpu) = cpumask_next_zero((cpu), (mask)), \ |
| 225 | (cpu) < nr_cpu_ids;) |
| 226 | |
Peter Zijlstra | c743f0a | 2017-04-14 14:20:05 +0200 | [diff] [blame] | 227 | extern int cpumask_next_wrap(int n, const struct cpumask *mask, int start, bool wrap); |
| 228 | |
| 229 | /** |
| 230 | * for_each_cpu_wrap - iterate over every cpu in a mask, starting at a specified location |
| 231 | * @cpu: the (optionally unsigned) integer iterator |
| 232 | * @mask: the cpumask poiter |
| 233 | * @start: the start location |
| 234 | * |
| 235 | * The implementation does not assume any bit in @mask is set (including @start). |
| 236 | * |
| 237 | * After the loop, cpu is >= nr_cpu_ids. |
| 238 | */ |
| 239 | #define for_each_cpu_wrap(cpu, mask, start) \ |
| 240 | for ((cpu) = cpumask_next_wrap((start)-1, (mask), (start), false); \ |
| 241 | (cpu) < nr_cpumask_bits; \ |
| 242 | (cpu) = cpumask_next_wrap((cpu), (mask), (start), true)) |
| 243 | |
Paul E. McKenney | 8bd93a2 | 2010-02-22 17:04:59 -0800 | [diff] [blame] | 244 | /** |
Rusty Russell | 984f2f3 | 2008-11-08 20:24:19 +1100 | [diff] [blame] | 245 | * for_each_cpu_and - iterate over every cpu in both masks |
| 246 | * @cpu: the (optionally unsigned) integer iterator |
| 247 | * @mask: the first cpumask pointer |
| 248 | * @and: the second cpumask pointer |
| 249 | * |
| 250 | * This saves a temporary CPU mask in many places. It is equivalent to: |
| 251 | * struct cpumask tmp; |
| 252 | * cpumask_and(&tmp, &mask, &and); |
| 253 | * for_each_cpu(cpu, &tmp) |
| 254 | * ... |
| 255 | * |
| 256 | * After the loop, cpu is >= nr_cpu_ids. |
| 257 | */ |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 258 | #define for_each_cpu_and(cpu, mask, and) \ |
| 259 | for ((cpu) = -1; \ |
| 260 | (cpu) = cpumask_next_and((cpu), (mask), (and)), \ |
| 261 | (cpu) < nr_cpu_ids;) |
| 262 | #endif /* SMP */ |
| 263 | |
| 264 | #define CPU_BITS_NONE \ |
| 265 | { \ |
| 266 | [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \ |
| 267 | } |
| 268 | |
| 269 | #define CPU_BITS_CPU0 \ |
| 270 | { \ |
| 271 | [0] = 1UL \ |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * cpumask_set_cpu - set a cpu in a cpumask |
| 276 | * @cpu: cpu number (< nr_cpu_ids) |
| 277 | * @dstp: the cpumask pointer |
| 278 | */ |
| 279 | static inline void cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp) |
| 280 | { |
| 281 | set_bit(cpumask_check(cpu), cpumask_bits(dstp)); |
| 282 | } |
| 283 | |
Peter Zijlstra | 6c8557b | 2017-05-19 12:58:25 +0200 | [diff] [blame] | 284 | static inline void __cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp) |
| 285 | { |
| 286 | __set_bit(cpumask_check(cpu), cpumask_bits(dstp)); |
| 287 | } |
| 288 | |
| 289 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 290 | /** |
| 291 | * cpumask_clear_cpu - clear a cpu in a cpumask |
| 292 | * @cpu: cpu number (< nr_cpu_ids) |
| 293 | * @dstp: the cpumask pointer |
| 294 | */ |
| 295 | static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp) |
| 296 | { |
| 297 | clear_bit(cpumask_check(cpu), cpumask_bits(dstp)); |
| 298 | } |
| 299 | |
Peter Zijlstra | 6c8557b | 2017-05-19 12:58:25 +0200 | [diff] [blame] | 300 | static inline void __cpumask_clear_cpu(int cpu, struct cpumask *dstp) |
| 301 | { |
| 302 | __clear_bit(cpumask_check(cpu), cpumask_bits(dstp)); |
| 303 | } |
| 304 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 305 | /** |
| 306 | * cpumask_test_cpu - test for a cpu in a cpumask |
| 307 | * @cpu: cpu number (< nr_cpu_ids) |
| 308 | * @cpumask: the cpumask pointer |
| 309 | * |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 310 | * Returns 1 if @cpu is set in @cpumask, else returns 0 |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 311 | */ |
Rasmus Villemoes | 3bbf7f4 | 2015-03-31 13:25:05 +1030 | [diff] [blame] | 312 | static inline int cpumask_test_cpu(int cpu, const struct cpumask *cpumask) |
| 313 | { |
| 314 | return test_bit(cpumask_check(cpu), cpumask_bits((cpumask))); |
| 315 | } |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 316 | |
| 317 | /** |
| 318 | * cpumask_test_and_set_cpu - atomically test and set a cpu in a cpumask |
| 319 | * @cpu: cpu number (< nr_cpu_ids) |
| 320 | * @cpumask: the cpumask pointer |
| 321 | * |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 322 | * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0 |
| 323 | * |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 324 | * test_and_set_bit wrapper for cpumasks. |
| 325 | */ |
| 326 | static inline int cpumask_test_and_set_cpu(int cpu, struct cpumask *cpumask) |
| 327 | { |
| 328 | return test_and_set_bit(cpumask_check(cpu), cpumask_bits(cpumask)); |
| 329 | } |
| 330 | |
| 331 | /** |
Xiao Guangrong | 54fdade | 2009-09-22 16:43:39 -0700 | [diff] [blame] | 332 | * cpumask_test_and_clear_cpu - atomically test and clear a cpu in a cpumask |
| 333 | * @cpu: cpu number (< nr_cpu_ids) |
| 334 | * @cpumask: the cpumask pointer |
| 335 | * |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 336 | * Returns 1 if @cpu is set in old bitmap of @cpumask, else returns 0 |
| 337 | * |
Xiao Guangrong | 54fdade | 2009-09-22 16:43:39 -0700 | [diff] [blame] | 338 | * test_and_clear_bit wrapper for cpumasks. |
| 339 | */ |
| 340 | static inline int cpumask_test_and_clear_cpu(int cpu, struct cpumask *cpumask) |
| 341 | { |
| 342 | return test_and_clear_bit(cpumask_check(cpu), cpumask_bits(cpumask)); |
| 343 | } |
| 344 | |
| 345 | /** |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 346 | * cpumask_setall - set all cpus (< nr_cpu_ids) in a cpumask |
| 347 | * @dstp: the cpumask pointer |
| 348 | */ |
| 349 | static inline void cpumask_setall(struct cpumask *dstp) |
| 350 | { |
| 351 | bitmap_fill(cpumask_bits(dstp), nr_cpumask_bits); |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * cpumask_clear - clear all cpus (< nr_cpu_ids) in a cpumask |
| 356 | * @dstp: the cpumask pointer |
| 357 | */ |
| 358 | static inline void cpumask_clear(struct cpumask *dstp) |
| 359 | { |
| 360 | bitmap_zero(cpumask_bits(dstp), nr_cpumask_bits); |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * cpumask_and - *dstp = *src1p & *src2p |
| 365 | * @dstp: the cpumask result |
| 366 | * @src1p: the first input |
| 367 | * @src2p: the second input |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 368 | * |
| 369 | * If *@dstp is empty, returns 0, else returns 1 |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 370 | */ |
Linus Torvalds | f4b0373 | 2009-08-21 09:26:15 -0700 | [diff] [blame] | 371 | static inline int cpumask_and(struct cpumask *dstp, |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 372 | const struct cpumask *src1p, |
| 373 | const struct cpumask *src2p) |
| 374 | { |
Linus Torvalds | f4b0373 | 2009-08-21 09:26:15 -0700 | [diff] [blame] | 375 | return bitmap_and(cpumask_bits(dstp), cpumask_bits(src1p), |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 376 | cpumask_bits(src2p), nr_cpumask_bits); |
| 377 | } |
| 378 | |
| 379 | /** |
| 380 | * cpumask_or - *dstp = *src1p | *src2p |
| 381 | * @dstp: the cpumask result |
| 382 | * @src1p: the first input |
| 383 | * @src2p: the second input |
| 384 | */ |
| 385 | static inline void cpumask_or(struct cpumask *dstp, const struct cpumask *src1p, |
| 386 | const struct cpumask *src2p) |
| 387 | { |
| 388 | bitmap_or(cpumask_bits(dstp), cpumask_bits(src1p), |
| 389 | cpumask_bits(src2p), nr_cpumask_bits); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * cpumask_xor - *dstp = *src1p ^ *src2p |
| 394 | * @dstp: the cpumask result |
| 395 | * @src1p: the first input |
| 396 | * @src2p: the second input |
| 397 | */ |
| 398 | static inline void cpumask_xor(struct cpumask *dstp, |
| 399 | const struct cpumask *src1p, |
| 400 | const struct cpumask *src2p) |
| 401 | { |
| 402 | bitmap_xor(cpumask_bits(dstp), cpumask_bits(src1p), |
| 403 | cpumask_bits(src2p), nr_cpumask_bits); |
| 404 | } |
| 405 | |
| 406 | /** |
| 407 | * cpumask_andnot - *dstp = *src1p & ~*src2p |
| 408 | * @dstp: the cpumask result |
| 409 | * @src1p: the first input |
| 410 | * @src2p: the second input |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 411 | * |
| 412 | * If *@dstp is empty, returns 0, else returns 1 |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 413 | */ |
Linus Torvalds | f4b0373 | 2009-08-21 09:26:15 -0700 | [diff] [blame] | 414 | static inline int cpumask_andnot(struct cpumask *dstp, |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 415 | const struct cpumask *src1p, |
| 416 | const struct cpumask *src2p) |
| 417 | { |
Linus Torvalds | f4b0373 | 2009-08-21 09:26:15 -0700 | [diff] [blame] | 418 | return bitmap_andnot(cpumask_bits(dstp), cpumask_bits(src1p), |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 419 | cpumask_bits(src2p), nr_cpumask_bits); |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * cpumask_complement - *dstp = ~*srcp |
| 424 | * @dstp: the cpumask result |
| 425 | * @srcp: the input to invert |
| 426 | */ |
| 427 | static inline void cpumask_complement(struct cpumask *dstp, |
| 428 | const struct cpumask *srcp) |
| 429 | { |
| 430 | bitmap_complement(cpumask_bits(dstp), cpumask_bits(srcp), |
| 431 | nr_cpumask_bits); |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * cpumask_equal - *src1p == *src2p |
| 436 | * @src1p: the first input |
| 437 | * @src2p: the second input |
| 438 | */ |
| 439 | static inline bool cpumask_equal(const struct cpumask *src1p, |
| 440 | const struct cpumask *src2p) |
| 441 | { |
| 442 | return bitmap_equal(cpumask_bits(src1p), cpumask_bits(src2p), |
| 443 | nr_cpumask_bits); |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * cpumask_intersects - (*src1p & *src2p) != 0 |
| 448 | * @src1p: the first input |
| 449 | * @src2p: the second input |
| 450 | */ |
| 451 | static inline bool cpumask_intersects(const struct cpumask *src1p, |
| 452 | const struct cpumask *src2p) |
| 453 | { |
| 454 | return bitmap_intersects(cpumask_bits(src1p), cpumask_bits(src2p), |
| 455 | nr_cpumask_bits); |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * cpumask_subset - (*src1p & ~*src2p) == 0 |
| 460 | * @src1p: the first input |
| 461 | * @src2p: the second input |
Alex Shi | c777ad6 | 2012-05-28 22:23:51 +0800 | [diff] [blame] | 462 | * |
| 463 | * Returns 1 if *@src1p is a subset of *@src2p, else returns 0 |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 464 | */ |
| 465 | static inline int cpumask_subset(const struct cpumask *src1p, |
| 466 | const struct cpumask *src2p) |
| 467 | { |
| 468 | return bitmap_subset(cpumask_bits(src1p), cpumask_bits(src2p), |
| 469 | nr_cpumask_bits); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * cpumask_empty - *srcp == 0 |
| 474 | * @srcp: the cpumask to that all cpus < nr_cpu_ids are clear. |
| 475 | */ |
| 476 | static inline bool cpumask_empty(const struct cpumask *srcp) |
| 477 | { |
| 478 | return bitmap_empty(cpumask_bits(srcp), nr_cpumask_bits); |
| 479 | } |
| 480 | |
| 481 | /** |
| 482 | * cpumask_full - *srcp == 0xFFFFFFFF... |
| 483 | * @srcp: the cpumask to that all cpus < nr_cpu_ids are set. |
| 484 | */ |
| 485 | static inline bool cpumask_full(const struct cpumask *srcp) |
| 486 | { |
| 487 | return bitmap_full(cpumask_bits(srcp), nr_cpumask_bits); |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * cpumask_weight - Count of bits in *srcp |
| 492 | * @srcp: the cpumask to count bits (< nr_cpu_ids) in. |
| 493 | */ |
| 494 | static inline unsigned int cpumask_weight(const struct cpumask *srcp) |
| 495 | { |
| 496 | return bitmap_weight(cpumask_bits(srcp), nr_cpumask_bits); |
| 497 | } |
| 498 | |
| 499 | /** |
| 500 | * cpumask_shift_right - *dstp = *srcp >> n |
| 501 | * @dstp: the cpumask result |
| 502 | * @srcp: the input to shift |
| 503 | * @n: the number of bits to shift by |
| 504 | */ |
| 505 | static inline void cpumask_shift_right(struct cpumask *dstp, |
| 506 | const struct cpumask *srcp, int n) |
| 507 | { |
| 508 | bitmap_shift_right(cpumask_bits(dstp), cpumask_bits(srcp), n, |
| 509 | nr_cpumask_bits); |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * cpumask_shift_left - *dstp = *srcp << n |
| 514 | * @dstp: the cpumask result |
| 515 | * @srcp: the input to shift |
| 516 | * @n: the number of bits to shift by |
| 517 | */ |
| 518 | static inline void cpumask_shift_left(struct cpumask *dstp, |
| 519 | const struct cpumask *srcp, int n) |
| 520 | { |
| 521 | bitmap_shift_left(cpumask_bits(dstp), cpumask_bits(srcp), n, |
| 522 | nr_cpumask_bits); |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * cpumask_copy - *dstp = *srcp |
| 527 | * @dstp: the result |
| 528 | * @srcp: the input cpumask |
| 529 | */ |
| 530 | static inline void cpumask_copy(struct cpumask *dstp, |
| 531 | const struct cpumask *srcp) |
| 532 | { |
| 533 | bitmap_copy(cpumask_bits(dstp), cpumask_bits(srcp), nr_cpumask_bits); |
| 534 | } |
| 535 | |
| 536 | /** |
| 537 | * cpumask_any - pick a "random" cpu from *srcp |
| 538 | * @srcp: the input cpumask |
| 539 | * |
| 540 | * Returns >= nr_cpu_ids if no cpus set. |
| 541 | */ |
| 542 | #define cpumask_any(srcp) cpumask_first(srcp) |
| 543 | |
| 544 | /** |
| 545 | * cpumask_first_and - return the first cpu from *srcp1 & *srcp2 |
| 546 | * @src1p: the first input |
| 547 | * @src2p: the second input |
| 548 | * |
| 549 | * Returns >= nr_cpu_ids if no cpus set in both. See also cpumask_next_and(). |
| 550 | */ |
| 551 | #define cpumask_first_and(src1p, src2p) cpumask_next_and(-1, (src1p), (src2p)) |
| 552 | |
| 553 | /** |
| 554 | * cpumask_any_and - pick a "random" cpu from *mask1 & *mask2 |
| 555 | * @mask1: the first input cpumask |
| 556 | * @mask2: the second input cpumask |
| 557 | * |
| 558 | * Returns >= nr_cpu_ids if no cpus set. |
| 559 | */ |
| 560 | #define cpumask_any_and(mask1, mask2) cpumask_first_and((mask1), (mask2)) |
| 561 | |
| 562 | /** |
Rusty Russell | cd83e42 | 2008-11-07 11:12:29 +1100 | [diff] [blame] | 563 | * cpumask_of - the cpumask containing just a given cpu |
| 564 | * @cpu: the cpu (<= nr_cpu_ids) |
| 565 | */ |
| 566 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) |
| 567 | |
| 568 | /** |
Rusty Russell | 29c0177 | 2008-12-13 21:20:25 +1030 | [diff] [blame] | 569 | * cpumask_parse_user - extract a cpumask from a user string |
| 570 | * @buf: the buffer to extract from |
| 571 | * @len: the length of the buffer |
| 572 | * @dstp: the cpumask to set. |
| 573 | * |
| 574 | * Returns -errno, or 0 for success. |
| 575 | */ |
| 576 | static inline int cpumask_parse_user(const char __user *buf, int len, |
| 577 | struct cpumask *dstp) |
| 578 | { |
Tejun Heo | 4d59b6c | 2017-02-08 14:30:56 -0800 | [diff] [blame] | 579 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits); |
Rusty Russell | 29c0177 | 2008-12-13 21:20:25 +1030 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | /** |
Mike Travis | 4b06042 | 2011-05-24 17:13:12 -0700 | [diff] [blame] | 583 | * cpumask_parselist_user - extract a cpumask from a user string |
| 584 | * @buf: the buffer to extract from |
| 585 | * @len: the length of the buffer |
| 586 | * @dstp: the cpumask to set. |
| 587 | * |
| 588 | * Returns -errno, or 0 for success. |
| 589 | */ |
| 590 | static inline int cpumask_parselist_user(const char __user *buf, int len, |
| 591 | struct cpumask *dstp) |
| 592 | { |
| 593 | return bitmap_parselist_user(buf, len, cpumask_bits(dstp), |
Tejun Heo | 4d59b6c | 2017-02-08 14:30:56 -0800 | [diff] [blame] | 594 | nr_cpumask_bits); |
Mike Travis | 4b06042 | 2011-05-24 17:13:12 -0700 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | /** |
Geliang Tang | b06fb41 | 2016-08-02 14:05:42 -0700 | [diff] [blame] | 598 | * cpumask_parse - extract a cpumask from a string |
Tejun Heo | ba630e4 | 2013-03-12 11:30:04 -0700 | [diff] [blame] | 599 | * @buf: the buffer to extract from |
| 600 | * @dstp: the cpumask to set. |
| 601 | * |
| 602 | * Returns -errno, or 0 for success. |
| 603 | */ |
| 604 | static inline int cpumask_parse(const char *buf, struct cpumask *dstp) |
| 605 | { |
| 606 | char *nl = strchr(buf, '\n'); |
Brian W Hart | cea092c | 2014-05-14 10:33:45 +0930 | [diff] [blame] | 607 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); |
Tejun Heo | ba630e4 | 2013-03-12 11:30:04 -0700 | [diff] [blame] | 608 | |
Tejun Heo | 4d59b6c | 2017-02-08 14:30:56 -0800 | [diff] [blame] | 609 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits); |
Tejun Heo | ba630e4 | 2013-03-12 11:30:04 -0700 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | /** |
Alex Shi | 231daf0 | 2012-07-27 09:29:42 +0930 | [diff] [blame] | 613 | * cpulist_parse - extract a cpumask from a user string of ranges |
Rusty Russell | 29c0177 | 2008-12-13 21:20:25 +1030 | [diff] [blame] | 614 | * @buf: the buffer to extract from |
Rusty Russell | 29c0177 | 2008-12-13 21:20:25 +1030 | [diff] [blame] | 615 | * @dstp: the cpumask to set. |
| 616 | * |
| 617 | * Returns -errno, or 0 for success. |
| 618 | */ |
| 619 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) |
| 620 | { |
Tejun Heo | 4d59b6c | 2017-02-08 14:30:56 -0800 | [diff] [blame] | 621 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /** |
| 625 | * cpumask_size - size to allocate for a 'struct cpumask' in bytes |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 626 | */ |
| 627 | static inline size_t cpumask_size(void) |
| 628 | { |
Rusty Russell | cdfdef7 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 629 | return BITS_TO_LONGS(nr_cpumask_bits) * sizeof(long); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | /* |
| 633 | * cpumask_var_t: struct cpumask for stack usage. |
| 634 | * |
| 635 | * Oh, the wicked games we play! In order to make kernel coding a |
| 636 | * little more difficult, we typedef cpumask_var_t to an array or a |
| 637 | * pointer: doing &mask on an array is a noop, so it still works. |
| 638 | * |
| 639 | * ie. |
| 640 | * cpumask_var_t tmpmask; |
| 641 | * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL)) |
| 642 | * return -ENOMEM; |
| 643 | * |
| 644 | * ... use 'tmpmask' like a normal struct cpumask * ... |
| 645 | * |
| 646 | * free_cpumask_var(tmpmask); |
KOSAKI Motohiro | a64a26e | 2011-07-26 16:08:45 -0700 | [diff] [blame] | 647 | * |
| 648 | * |
| 649 | * However, one notable exception is there. alloc_cpumask_var() allocates |
| 650 | * only nr_cpumask_bits bits (in the other hand, real cpumask_t always has |
| 651 | * NR_CPUS bits). Therefore you don't have to dereference cpumask_var_t. |
| 652 | * |
| 653 | * cpumask_var_t tmpmask; |
| 654 | * if (!alloc_cpumask_var(&tmpmask, GFP_KERNEL)) |
| 655 | * return -ENOMEM; |
| 656 | * |
| 657 | * var = *tmpmask; |
| 658 | * |
| 659 | * This code makes NR_CPUS length memcopy and brings to a memory corruption. |
| 660 | * cpumask_copy() provide safe copy functionality. |
Christoph Lameter | 4ba2968 | 2014-08-26 19:12:21 -0500 | [diff] [blame] | 661 | * |
| 662 | * Note that there is another evil here: If you define a cpumask_var_t |
| 663 | * as a percpu variable then the way to obtain the address of the cpumask |
| 664 | * structure differently influences what this_cpu_* operation needs to be |
| 665 | * used. Please use this_cpu_cpumask_var_t in those cases. The direct use |
| 666 | * of this_cpu_ptr() or this_cpu_read() will lead to failures when the |
| 667 | * other type of cpumask_var_t implementation is configured. |
Waiman Long | 668802c | 2017-01-30 12:57:43 -0500 | [diff] [blame] | 668 | * |
| 669 | * Please also note that __cpumask_var_read_mostly can be used to declare |
| 670 | * a cpumask_var_t variable itself (not its content) as read mostly. |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 671 | */ |
| 672 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 673 | typedef struct cpumask *cpumask_var_t; |
| 674 | |
Waiman Long | 668802c | 2017-01-30 12:57:43 -0500 | [diff] [blame] | 675 | #define this_cpu_cpumask_var_ptr(x) this_cpu_read(x) |
| 676 | #define __cpumask_var_read_mostly __read_mostly |
Christoph Lameter | 4ba2968 | 2014-08-26 19:12:21 -0500 | [diff] [blame] | 677 | |
Mike Travis | 7b4967c | 2008-12-19 16:56:37 +1030 | [diff] [blame] | 678 | bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 679 | bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags); |
Yinghai Lu | 0281b5d | 2009-06-06 14:50:36 -0700 | [diff] [blame] | 680 | bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node); |
| 681 | bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 682 | void alloc_bootmem_cpumask_var(cpumask_var_t *mask); |
| 683 | void free_cpumask_var(cpumask_var_t mask); |
Rusty Russell | cd83e42 | 2008-11-07 11:12:29 +1100 | [diff] [blame] | 684 | void free_bootmem_cpumask_var(cpumask_var_t mask); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 685 | |
Matthias Kaehlcke | f7e30f0 | 2017-04-12 11:20:29 -0700 | [diff] [blame] | 686 | static inline bool cpumask_available(cpumask_var_t mask) |
| 687 | { |
| 688 | return mask != NULL; |
| 689 | } |
| 690 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 691 | #else |
| 692 | typedef struct cpumask cpumask_var_t[1]; |
| 693 | |
Christoph Lameter | 4ba2968 | 2014-08-26 19:12:21 -0500 | [diff] [blame] | 694 | #define this_cpu_cpumask_var_ptr(x) this_cpu_ptr(x) |
Waiman Long | 668802c | 2017-01-30 12:57:43 -0500 | [diff] [blame] | 695 | #define __cpumask_var_read_mostly |
Christoph Lameter | 4ba2968 | 2014-08-26 19:12:21 -0500 | [diff] [blame] | 696 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 697 | static inline bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags) |
| 698 | { |
| 699 | return true; |
| 700 | } |
| 701 | |
Mike Travis | 7b4967c | 2008-12-19 16:56:37 +1030 | [diff] [blame] | 702 | static inline bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, |
| 703 | int node) |
| 704 | { |
| 705 | return true; |
| 706 | } |
| 707 | |
Yinghai Lu | 0281b5d | 2009-06-06 14:50:36 -0700 | [diff] [blame] | 708 | static inline bool zalloc_cpumask_var(cpumask_var_t *mask, gfp_t flags) |
| 709 | { |
| 710 | cpumask_clear(*mask); |
| 711 | return true; |
| 712 | } |
| 713 | |
| 714 | static inline bool zalloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, |
| 715 | int node) |
| 716 | { |
| 717 | cpumask_clear(*mask); |
| 718 | return true; |
| 719 | } |
| 720 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 721 | static inline void alloc_bootmem_cpumask_var(cpumask_var_t *mask) |
| 722 | { |
| 723 | } |
| 724 | |
| 725 | static inline void free_cpumask_var(cpumask_var_t mask) |
| 726 | { |
| 727 | } |
Rusty Russell | cd83e42 | 2008-11-07 11:12:29 +1100 | [diff] [blame] | 728 | |
| 729 | static inline void free_bootmem_cpumask_var(cpumask_var_t mask) |
| 730 | { |
| 731 | } |
Matthias Kaehlcke | f7e30f0 | 2017-04-12 11:20:29 -0700 | [diff] [blame] | 732 | |
| 733 | static inline bool cpumask_available(cpumask_var_t mask) |
| 734 | { |
| 735 | return true; |
| 736 | } |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 737 | #endif /* CONFIG_CPUMASK_OFFSTACK */ |
| 738 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 739 | /* It's common to want to use cpu_all_mask in struct member initializers, |
| 740 | * so it has to refer to an address rather than a pointer. */ |
| 741 | extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS); |
| 742 | #define cpu_all_mask to_cpumask(cpu_all_bits) |
| 743 | |
| 744 | /* First bits of cpu_bit_bitmap are in fact unset. */ |
| 745 | #define cpu_none_mask to_cpumask(cpu_bit_bitmap[0]) |
| 746 | |
Rusty Russell | ae7a47e | 2008-12-30 09:05:15 +1030 | [diff] [blame] | 747 | #define for_each_possible_cpu(cpu) for_each_cpu((cpu), cpu_possible_mask) |
| 748 | #define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask) |
| 749 | #define for_each_present_cpu(cpu) for_each_cpu((cpu), cpu_present_mask) |
| 750 | |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 751 | /* Wrappers for arch boot code to manipulate normally-constant masks */ |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 752 | void init_cpu_present(const struct cpumask *src); |
| 753 | void init_cpu_possible(const struct cpumask *src); |
| 754 | void init_cpu_online(const struct cpumask *src); |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 755 | |
Thomas Gleixner | 427d77a | 2016-12-13 19:32:28 +0100 | [diff] [blame] | 756 | static inline void reset_cpu_possible_mask(void) |
| 757 | { |
| 758 | bitmap_zero(cpumask_bits(&__cpu_possible_mask), NR_CPUS); |
| 759 | } |
| 760 | |
Rasmus Villemoes | 9425676 | 2016-01-20 15:00:28 -0800 | [diff] [blame] | 761 | static inline void |
| 762 | set_cpu_possible(unsigned int cpu, bool possible) |
| 763 | { |
| 764 | if (possible) |
| 765 | cpumask_set_cpu(cpu, &__cpu_possible_mask); |
| 766 | else |
| 767 | cpumask_clear_cpu(cpu, &__cpu_possible_mask); |
| 768 | } |
| 769 | |
| 770 | static inline void |
| 771 | set_cpu_present(unsigned int cpu, bool present) |
| 772 | { |
| 773 | if (present) |
| 774 | cpumask_set_cpu(cpu, &__cpu_present_mask); |
| 775 | else |
| 776 | cpumask_clear_cpu(cpu, &__cpu_present_mask); |
| 777 | } |
| 778 | |
| 779 | static inline void |
| 780 | set_cpu_online(unsigned int cpu, bool online) |
| 781 | { |
Peter Zijlstra (Intel) | e9d867a | 2016-03-10 12:54:08 +0100 | [diff] [blame] | 782 | if (online) |
Rasmus Villemoes | 9425676 | 2016-01-20 15:00:28 -0800 | [diff] [blame] | 783 | cpumask_set_cpu(cpu, &__cpu_online_mask); |
Peter Zijlstra (Intel) | e9d867a | 2016-03-10 12:54:08 +0100 | [diff] [blame] | 784 | else |
Rasmus Villemoes | 9425676 | 2016-01-20 15:00:28 -0800 | [diff] [blame] | 785 | cpumask_clear_cpu(cpu, &__cpu_online_mask); |
Rasmus Villemoes | 9425676 | 2016-01-20 15:00:28 -0800 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | static inline void |
| 789 | set_cpu_active(unsigned int cpu, bool active) |
| 790 | { |
| 791 | if (active) |
| 792 | cpumask_set_cpu(cpu, &__cpu_active_mask); |
| 793 | else |
| 794 | cpumask_clear_cpu(cpu, &__cpu_active_mask); |
| 795 | } |
| 796 | |
| 797 | |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 798 | /** |
| 799 | * to_cpumask - convert an NR_CPUS bitmap to a struct cpumask * |
| 800 | * @bitmap: the bitmap |
| 801 | * |
| 802 | * There are a few places where cpumask_var_t isn't appropriate and |
| 803 | * static cpumasks must be used (eg. very early boot), yet we don't |
| 804 | * expose the definition of 'struct cpumask'. |
| 805 | * |
| 806 | * This does the conversion, and can be used as a constant initializer. |
| 807 | */ |
| 808 | #define to_cpumask(bitmap) \ |
| 809 | ((struct cpumask *)(1 ? (bitmap) \ |
| 810 | : (void *)sizeof(__check_is_bitmap(bitmap)))) |
| 811 | |
| 812 | static inline int __check_is_bitmap(const unsigned long *bitmap) |
| 813 | { |
| 814 | return 1; |
| 815 | } |
| 816 | |
| 817 | /* |
| 818 | * Special-case data structure for "single bit set only" constant CPU masks. |
| 819 | * |
| 820 | * We pre-generate all the 64 (or 32) possible bit positions, with enough |
| 821 | * padding to the left and the right, and return the constant pointer |
| 822 | * appropriately offset. |
| 823 | */ |
| 824 | extern const unsigned long |
| 825 | cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)]; |
| 826 | |
| 827 | static inline const struct cpumask *get_cpu_mask(unsigned int cpu) |
| 828 | { |
| 829 | const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG]; |
| 830 | p -= cpu / BITS_PER_LONG; |
| 831 | return to_cpumask(p); |
| 832 | } |
| 833 | |
| 834 | #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu)) |
| 835 | |
| 836 | #if NR_CPUS <= BITS_PER_LONG |
| 837 | #define CPU_BITS_ALL \ |
| 838 | { \ |
Rusty Russell | 9941a38 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 839 | [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \ |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | #else /* NR_CPUS > BITS_PER_LONG */ |
| 843 | |
| 844 | #define CPU_BITS_ALL \ |
| 845 | { \ |
| 846 | [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \ |
Rusty Russell | 9941a38 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 847 | [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \ |
Rusty Russell | 6ba2ef7 | 2009-09-24 09:34:53 -0600 | [diff] [blame] | 848 | } |
| 849 | #endif /* NR_CPUS > BITS_PER_LONG */ |
| 850 | |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 851 | /** |
| 852 | * cpumap_print_to_pagebuf - copies the cpumask into the buffer either |
| 853 | * as comma-separated list of cpus or hex values of cpumask |
| 854 | * @list: indicates whether the cpumap must be list |
| 855 | * @mask: the cpumask to copy |
| 856 | * @buf: the buffer to copy into |
| 857 | * |
| 858 | * Returns the length of the (null-terminated) @buf string, zero if |
| 859 | * nothing is copied. |
| 860 | */ |
| 861 | static inline ssize_t |
| 862 | cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask) |
| 863 | { |
| 864 | return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask), |
Tejun Heo | 513e3d2 | 2015-02-13 14:36:50 -0800 | [diff] [blame] | 865 | nr_cpu_ids); |
Sudeep Holla | 5aaba36 | 2014-09-30 14:48:22 +0100 | [diff] [blame] | 866 | } |
| 867 | |
Rusty Russell | 9941a38 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 868 | #if NR_CPUS <= BITS_PER_LONG |
| 869 | #define CPU_MASK_ALL \ |
| 870 | (cpumask_t) { { \ |
| 871 | [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \ |
| 872 | } } |
| 873 | #else |
| 874 | #define CPU_MASK_ALL \ |
| 875 | (cpumask_t) { { \ |
| 876 | [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \ |
| 877 | [BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS) \ |
| 878 | } } |
| 879 | #endif /* NR_CPUS > BITS_PER_LONG */ |
| 880 | |
| 881 | #define CPU_MASK_NONE \ |
| 882 | (cpumask_t) { { \ |
| 883 | [0 ... BITS_TO_LONGS(NR_CPUS)-1] = 0UL \ |
| 884 | } } |
| 885 | |
Rusty Russell | 1527781 | 2015-04-16 12:33:51 +0930 | [diff] [blame] | 886 | #define CPU_MASK_CPU0 \ |
| 887 | (cpumask_t) { { \ |
| 888 | [0] = 1UL \ |
| 889 | } } |
| 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | #endif /* __LINUX_CPUMASK_H */ |