]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/smp.c
syscalls.h: add forward declarations for inplace syscall wrappers
[mirror_ubuntu-bionic-kernel.git] / kernel / smp.c
CommitLineData
3d442233
JA
1/*
2 * Generic helpers for smp ipi calls
3 *
4 * (C) Jens Axboe <jens.axboe@oracle.com> 2008
3d442233 5 */
3d442233 6#include <linux/rcupdate.h>
59190f42 7#include <linux/rculist.h>
641cd4cf 8#include <linux/kernel.h>
9984de1a 9#include <linux/export.h>
0b13fda1
IM
10#include <linux/percpu.h>
11#include <linux/init.h>
5a0e3ad6 12#include <linux/gfp.h>
3d442233 13#include <linux/smp.h>
8969a5ed 14#include <linux/cpu.h>
3d442233 15
3bb5d2ee
SS
16#include "smpboot.h"
17
351f8f8e 18#ifdef CONFIG_USE_GENERIC_SMP_HELPERS
3d442233 19enum {
6e275637 20 CSD_FLAG_LOCK = 0x01,
3d442233
JA
21};
22
23struct call_function_data {
9a46ad6d 24 struct call_single_data __percpu *csd;
0b13fda1 25 cpumask_var_t cpumask;
f44310b9 26 cpumask_var_t cpumask_ipi;
3d442233
JA
27};
28
e03bcb68
MM
29static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_function_data, cfd_data);
30
3d442233 31struct call_single_queue {
0b13fda1 32 struct list_head list;
9f5a5621 33 raw_spinlock_t lock;
3d442233
JA
34};
35
e03bcb68 36static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_queue, call_single_queue);
8969a5ed
PZ
37
38static int
39hotplug_cfd(struct notifier_block *nfb, unsigned long action, void *hcpu)
40{
41 long cpu = (long)hcpu;
42 struct call_function_data *cfd = &per_cpu(cfd_data, cpu);
43
44 switch (action) {
45 case CPU_UP_PREPARE:
46 case CPU_UP_PREPARE_FROZEN:
eaa95840 47 if (!zalloc_cpumask_var_node(&cfd->cpumask, GFP_KERNEL,
8969a5ed 48 cpu_to_node(cpu)))
80b5184c 49 return notifier_from_errno(-ENOMEM);
f44310b9 50 if (!zalloc_cpumask_var_node(&cfd->cpumask_ipi, GFP_KERNEL,
60c32369
CG
51 cpu_to_node(cpu))) {
52 free_cpumask_var(cfd->cpumask);
f44310b9 53 return notifier_from_errno(-ENOMEM);
60c32369 54 }
9a46ad6d
SL
55 cfd->csd = alloc_percpu(struct call_single_data);
56 if (!cfd->csd) {
60c32369 57 free_cpumask_var(cfd->cpumask_ipi);
9a46ad6d
SL
58 free_cpumask_var(cfd->cpumask);
59 return notifier_from_errno(-ENOMEM);
60 }
8969a5ed
PZ
61 break;
62
69dd647f 63#ifdef CONFIG_HOTPLUG_CPU
8969a5ed
PZ
64 case CPU_UP_CANCELED:
65 case CPU_UP_CANCELED_FROZEN:
66
67 case CPU_DEAD:
68 case CPU_DEAD_FROZEN:
69 free_cpumask_var(cfd->cpumask);
f44310b9 70 free_cpumask_var(cfd->cpumask_ipi);
9a46ad6d 71 free_percpu(cfd->csd);
8969a5ed
PZ
72 break;
73#endif
74 };
75
76 return NOTIFY_OK;
77}
78
0db0628d 79static struct notifier_block hotplug_cfd_notifier = {
0b13fda1 80 .notifier_call = hotplug_cfd,
8969a5ed
PZ
81};
82
d8ad7d11 83void __init call_function_init(void)
3d442233 84{
8969a5ed 85 void *cpu = (void *)(long)smp_processor_id();
3d442233
JA
86 int i;
87
88 for_each_possible_cpu(i) {
89 struct call_single_queue *q = &per_cpu(call_single_queue, i);
90
9f5a5621 91 raw_spin_lock_init(&q->lock);
3d442233
JA
92 INIT_LIST_HEAD(&q->list);
93 }
8969a5ed
PZ
94
95 hotplug_cfd(&hotplug_cfd_notifier, CPU_UP_PREPARE, cpu);
96 register_cpu_notifier(&hotplug_cfd_notifier);
3d442233
JA
97}
98
8969a5ed
PZ
99/*
100 * csd_lock/csd_unlock used to serialize access to per-cpu csd resources
101 *
0b13fda1
IM
102 * For non-synchronous ipi calls the csd can still be in use by the
103 * previous function call. For multi-cpu calls its even more interesting
104 * as we'll have to ensure no other cpu is observing our csd.
8969a5ed 105 */
e1d12f32 106static void csd_lock_wait(struct call_single_data *csd)
8969a5ed 107{
e1d12f32 108 while (csd->flags & CSD_FLAG_LOCK)
8969a5ed 109 cpu_relax();
6e275637
PZ
110}
111
e1d12f32 112static void csd_lock(struct call_single_data *csd)
6e275637 113{
e1d12f32
AM
114 csd_lock_wait(csd);
115 csd->flags |= CSD_FLAG_LOCK;
8969a5ed
PZ
116
117 /*
0b13fda1
IM
118 * prevent CPU from reordering the above assignment
119 * to ->flags with any subsequent assignments to other
120 * fields of the specified call_single_data structure:
8969a5ed 121 */
8969a5ed
PZ
122 smp_mb();
123}
124
e1d12f32 125static void csd_unlock(struct call_single_data *csd)
8969a5ed 126{
e1d12f32 127 WARN_ON(!(csd->flags & CSD_FLAG_LOCK));
0b13fda1 128
8969a5ed 129 /*
0b13fda1 130 * ensure we're all done before releasing data:
8969a5ed
PZ
131 */
132 smp_mb();
0b13fda1 133
e1d12f32 134 csd->flags &= ~CSD_FLAG_LOCK;
3d442233
JA
135}
136
137/*
0b13fda1
IM
138 * Insert a previously allocated call_single_data element
139 * for execution on the given CPU. data must already have
140 * ->func, ->info, and ->flags set.
3d442233 141 */
6e275637 142static
e1d12f32 143void generic_exec_single(int cpu, struct call_single_data *csd, int wait)
3d442233
JA
144{
145 struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
3d442233 146 unsigned long flags;
6e275637 147 int ipi;
3d442233 148
9f5a5621 149 raw_spin_lock_irqsave(&dst->lock, flags);
3d442233 150 ipi = list_empty(&dst->list);
e1d12f32 151 list_add_tail(&csd->list, &dst->list);
9f5a5621 152 raw_spin_unlock_irqrestore(&dst->lock, flags);
3d442233 153
561920a0 154 /*
15d0d3b3
NP
155 * The list addition should be visible before sending the IPI
156 * handler locks the list to pull the entry off it because of
157 * normal cache coherency rules implied by spinlocks.
158 *
159 * If IPIs can go out of order to the cache coherency protocol
160 * in an architecture, sufficient synchronisation should be added
161 * to arch code to make it appear to obey cache coherency WRT
0b13fda1
IM
162 * locking and barrier primitives. Generic code isn't really
163 * equipped to do the right thing...
561920a0 164 */
3d442233
JA
165 if (ipi)
166 arch_send_call_function_single_ipi(cpu);
167
168 if (wait)
e1d12f32 169 csd_lock_wait(csd);
3d442233
JA
170}
171
3d442233 172/*
0b13fda1
IM
173 * Invoked by arch to handle an IPI for call function single. Must be
174 * called from the arch with interrupts disabled.
3d442233
JA
175 */
176void generic_smp_call_function_single_interrupt(void)
177{
178 struct call_single_queue *q = &__get_cpu_var(call_single_queue);
0b13fda1 179 LIST_HEAD(list);
3d442233 180
269c861b
SS
181 /*
182 * Shouldn't receive this interrupt on a cpu that is not yet online.
183 */
184 WARN_ON_ONCE(!cpu_online(smp_processor_id()));
185
9f5a5621 186 raw_spin_lock(&q->lock);
15d0d3b3 187 list_replace_init(&q->list, &list);
9f5a5621 188 raw_spin_unlock(&q->lock);
3d442233 189
15d0d3b3 190 while (!list_empty(&list)) {
e1d12f32 191 struct call_single_data *csd;
3d442233 192
e1d12f32
AM
193 csd = list_entry(list.next, struct call_single_data, list);
194 list_del(&csd->list);
3d442233 195
e1d12f32 196 csd->func(csd->info);
15d0d3b3 197
46591962 198 csd_unlock(csd);
3d442233
JA
199 }
200}
201
e03bcb68 202static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_data, csd_data);
d7240b98 203
3d442233
JA
204/*
205 * smp_call_function_single - Run a function on a specific CPU
206 * @func: The function to run. This must be fast and non-blocking.
207 * @info: An arbitrary pointer to pass to the function.
3d442233
JA
208 * @wait: If true, wait until function has completed on other CPUs.
209 *
72f279b2 210 * Returns 0 on success, else a negative status code.
3d442233 211 */
3a5f65df 212int smp_call_function_single(int cpu, smp_call_func_t func, void *info,
8691e5a8 213 int wait)
3d442233 214{
8969a5ed
PZ
215 struct call_single_data d = {
216 .flags = 0,
217 };
3d442233 218 unsigned long flags;
0b13fda1 219 int this_cpu;
f73be6de 220 int err = 0;
3d442233 221
0b13fda1
IM
222 /*
223 * prevent preemption and reschedule on another processor,
224 * as well as CPU removal
225 */
226 this_cpu = get_cpu();
227
269c861b
SS
228 /*
229 * Can deadlock when called with interrupts disabled.
230 * We allow cpu's that are not yet online though, as no one else can
231 * send smp call function interrupt to this cpu and as such deadlocks
232 * can't happen.
233 */
234 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
235 && !oops_in_progress);
3d442233 236
0b13fda1 237 if (cpu == this_cpu) {
3d442233
JA
238 local_irq_save(flags);
239 func(info);
240 local_irq_restore(flags);
0b13fda1
IM
241 } else {
242 if ((unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) {
e1d12f32 243 struct call_single_data *csd = &d;
3d442233 244
0b13fda1 245 if (!wait)
e1d12f32 246 csd = &__get_cpu_var(csd_data);
6e275637 247
e1d12f32 248 csd_lock(csd);
3d442233 249
e1d12f32
AM
250 csd->func = func;
251 csd->info = info;
252 generic_exec_single(cpu, csd, wait);
0b13fda1
IM
253 } else {
254 err = -ENXIO; /* CPU not online */
255 }
3d442233
JA
256 }
257
258 put_cpu();
0b13fda1 259
f73be6de 260 return err;
3d442233
JA
261}
262EXPORT_SYMBOL(smp_call_function_single);
263
2ea6dec4
RR
264/*
265 * smp_call_function_any - Run a function on any of the given cpus
266 * @mask: The mask of cpus it can run on.
267 * @func: The function to run. This must be fast and non-blocking.
268 * @info: An arbitrary pointer to pass to the function.
269 * @wait: If true, wait until function has completed.
270 *
271 * Returns 0 on success, else a negative status code (if no cpus were online).
2ea6dec4
RR
272 *
273 * Selection preference:
274 * 1) current cpu if in @mask
275 * 2) any cpu of current node if in @mask
276 * 3) any other online cpu in @mask
277 */
278int smp_call_function_any(const struct cpumask *mask,
3a5f65df 279 smp_call_func_t func, void *info, int wait)
2ea6dec4
RR
280{
281 unsigned int cpu;
282 const struct cpumask *nodemask;
283 int ret;
284
285 /* Try for same CPU (cheapest) */
286 cpu = get_cpu();
287 if (cpumask_test_cpu(cpu, mask))
288 goto call;
289
290 /* Try for same node. */
af2422c4 291 nodemask = cpumask_of_node(cpu_to_node(cpu));
2ea6dec4
RR
292 for (cpu = cpumask_first_and(nodemask, mask); cpu < nr_cpu_ids;
293 cpu = cpumask_next_and(cpu, nodemask, mask)) {
294 if (cpu_online(cpu))
295 goto call;
296 }
297
298 /* Any online will do: smp_call_function_single handles nr_cpu_ids. */
299 cpu = cpumask_any_and(mask, cpu_online_mask);
300call:
301 ret = smp_call_function_single(cpu, func, info, wait);
302 put_cpu();
303 return ret;
304}
305EXPORT_SYMBOL_GPL(smp_call_function_any);
306
3d442233 307/**
27c379f7 308 * __smp_call_function_single(): Run a function on a specific CPU
3d442233
JA
309 * @cpu: The CPU to run on.
310 * @data: Pre-allocated and setup data structure
27c379f7 311 * @wait: If true, wait until function has completed on specified CPU.
3d442233 312 *
0b13fda1
IM
313 * Like smp_call_function_single(), but allow caller to pass in a
314 * pre-allocated data structure. Useful for embedding @data inside
315 * other structures, for instance.
3d442233 316 */
e1d12f32 317void __smp_call_function_single(int cpu, struct call_single_data *csd,
6e275637 318 int wait)
3d442233 319{
27c379f7
HC
320 unsigned int this_cpu;
321 unsigned long flags;
6e275637 322
27c379f7 323 this_cpu = get_cpu();
269c861b
SS
324 /*
325 * Can deadlock when called with interrupts disabled.
326 * We allow cpu's that are not yet online though, as no one else can
327 * send smp call function interrupt to this cpu and as such deadlocks
328 * can't happen.
329 */
330 WARN_ON_ONCE(cpu_online(smp_processor_id()) && wait && irqs_disabled()
331 && !oops_in_progress);
3d442233 332
27c379f7
HC
333 if (cpu == this_cpu) {
334 local_irq_save(flags);
e1d12f32 335 csd->func(csd->info);
27c379f7
HC
336 local_irq_restore(flags);
337 } else {
e1d12f32
AM
338 csd_lock(csd);
339 generic_exec_single(cpu, csd, wait);
27c379f7
HC
340 }
341 put_cpu();
3d442233
JA
342}
343
344/**
54b11e6d
RR
345 * smp_call_function_many(): Run a function on a set of other CPUs.
346 * @mask: The set of cpus to run on (only runs on online subset).
3d442233
JA
347 * @func: The function to run. This must be fast and non-blocking.
348 * @info: An arbitrary pointer to pass to the function.
0b13fda1
IM
349 * @wait: If true, wait (atomically) until function has completed
350 * on other CPUs.
3d442233 351 *
72f279b2 352 * If @wait is true, then returns once @func has returned.
3d442233
JA
353 *
354 * You must not call this function with disabled interrupts or from a
355 * hardware interrupt handler or from a bottom half handler. Preemption
356 * must be disabled when calling this function.
357 */
54b11e6d 358void smp_call_function_many(const struct cpumask *mask,
3a5f65df 359 smp_call_func_t func, void *info, bool wait)
3d442233 360{
e1d12f32 361 struct call_function_data *cfd;
9a46ad6d 362 int cpu, next_cpu, this_cpu = smp_processor_id();
3d442233 363
269c861b
SS
364 /*
365 * Can deadlock when called with interrupts disabled.
366 * We allow cpu's that are not yet online though, as no one else can
367 * send smp call function interrupt to this cpu and as such deadlocks
368 * can't happen.
369 */
370 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
bd924e8c 371 && !oops_in_progress && !early_boot_irqs_disabled);
3d442233 372
723aae25 373 /* Try to fastpath. So, what's a CPU they want? Ignoring this one. */
54b11e6d 374 cpu = cpumask_first_and(mask, cpu_online_mask);
0b13fda1 375 if (cpu == this_cpu)
54b11e6d 376 cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
0b13fda1 377
54b11e6d
RR
378 /* No online cpus? We're done. */
379 if (cpu >= nr_cpu_ids)
380 return;
381
382 /* Do we have another CPU which isn't us? */
383 next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
0b13fda1 384 if (next_cpu == this_cpu)
54b11e6d
RR
385 next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask);
386
387 /* Fastpath: do that cpu by itself. */
388 if (next_cpu >= nr_cpu_ids) {
389 smp_call_function_single(cpu, func, info, wait);
390 return;
3d442233
JA
391 }
392
e1d12f32 393 cfd = &__get_cpu_var(cfd_data);
45a57919 394
e1d12f32
AM
395 cpumask_and(cfd->cpumask, mask, cpu_online_mask);
396 cpumask_clear_cpu(this_cpu, cfd->cpumask);
723aae25
MM
397
398 /* Some callers race with other cpus changing the passed mask */
e1d12f32 399 if (unlikely(!cpumask_weight(cfd->cpumask)))
723aae25 400 return;
3d442233 401
f44310b9 402 /*
e1d12f32
AM
403 * After we put an entry into the list, cfd->cpumask may be cleared
404 * again when another CPU sends another IPI for a SMP function call, so
405 * cfd->cpumask will be zero.
f44310b9 406 */
e1d12f32 407 cpumask_copy(cfd->cpumask_ipi, cfd->cpumask);
3d442233 408
e1d12f32
AM
409 for_each_cpu(cpu, cfd->cpumask) {
410 struct call_single_data *csd = per_cpu_ptr(cfd->csd, cpu);
9a46ad6d
SL
411 struct call_single_queue *dst =
412 &per_cpu(call_single_queue, cpu);
413 unsigned long flags;
414
415 csd_lock(csd);
416 csd->func = func;
417 csd->info = info;
418
419 raw_spin_lock_irqsave(&dst->lock, flags);
420 list_add_tail(&csd->list, &dst->list);
421 raw_spin_unlock_irqrestore(&dst->lock, flags);
422 }
561920a0 423
3d442233 424 /* Send a message to all CPUs in the map */
e1d12f32 425 arch_send_call_function_ipi_mask(cfd->cpumask_ipi);
3d442233 426
9a46ad6d 427 if (wait) {
e1d12f32
AM
428 for_each_cpu(cpu, cfd->cpumask) {
429 struct call_single_data *csd;
430
431 csd = per_cpu_ptr(cfd->csd, cpu);
9a46ad6d
SL
432 csd_lock_wait(csd);
433 }
434 }
3d442233 435}
54b11e6d 436EXPORT_SYMBOL(smp_call_function_many);
3d442233
JA
437
438/**
439 * smp_call_function(): Run a function on all other CPUs.
440 * @func: The function to run. This must be fast and non-blocking.
441 * @info: An arbitrary pointer to pass to the function.
0b13fda1
IM
442 * @wait: If true, wait (atomically) until function has completed
443 * on other CPUs.
3d442233 444 *
54b11e6d 445 * Returns 0.
3d442233
JA
446 *
447 * If @wait is true, then returns once @func has returned; otherwise
72f279b2 448 * it returns just before the target cpu calls @func.
3d442233
JA
449 *
450 * You must not call this function with disabled interrupts or from a
451 * hardware interrupt handler or from a bottom half handler.
452 */
3a5f65df 453int smp_call_function(smp_call_func_t func, void *info, int wait)
3d442233 454{
3d442233 455 preempt_disable();
54b11e6d 456 smp_call_function_many(cpu_online_mask, func, info, wait);
3d442233 457 preempt_enable();
0b13fda1 458
54b11e6d 459 return 0;
3d442233
JA
460}
461EXPORT_SYMBOL(smp_call_function);
351f8f8e
AW
462#endif /* USE_GENERIC_SMP_HELPERS */
463
34db18a0
AW
464/* Setup configured maximum number of CPUs to activate */
465unsigned int setup_max_cpus = NR_CPUS;
466EXPORT_SYMBOL(setup_max_cpus);
467
468
469/*
470 * Setup routine for controlling SMP activation
471 *
472 * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
473 * activation entirely (the MPS table probe still happens, though).
474 *
475 * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
476 * greater than 0, limits the maximum number of CPUs activated in
477 * SMP mode to <NUM>.
478 */
479
480void __weak arch_disable_smp_support(void) { }
481
482static int __init nosmp(char *str)
483{
484 setup_max_cpus = 0;
485 arch_disable_smp_support();
486
487 return 0;
488}
489
490early_param("nosmp", nosmp);
491
492/* this is hard limit */
493static int __init nrcpus(char *str)
494{
495 int nr_cpus;
496
497 get_option(&str, &nr_cpus);
498 if (nr_cpus > 0 && nr_cpus < nr_cpu_ids)
499 nr_cpu_ids = nr_cpus;
500
501 return 0;
502}
503
504early_param("nr_cpus", nrcpus);
505
506static int __init maxcpus(char *str)
507{
508 get_option(&str, &setup_max_cpus);
509 if (setup_max_cpus == 0)
510 arch_disable_smp_support();
511
512 return 0;
513}
514
515early_param("maxcpus", maxcpus);
516
517/* Setup number of possible processor ids */
518int nr_cpu_ids __read_mostly = NR_CPUS;
519EXPORT_SYMBOL(nr_cpu_ids);
520
521/* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */
522void __init setup_nr_cpu_ids(void)
523{
524 nr_cpu_ids = find_last_bit(cpumask_bits(cpu_possible_mask),NR_CPUS) + 1;
525}
526
527/* Called by boot processor to activate the rest. */
528void __init smp_init(void)
529{
530 unsigned int cpu;
531
3bb5d2ee
SS
532 idle_threads_init();
533
34db18a0
AW
534 /* FIXME: This should be done in userspace --RR */
535 for_each_present_cpu(cpu) {
536 if (num_online_cpus() >= setup_max_cpus)
537 break;
538 if (!cpu_online(cpu))
539 cpu_up(cpu);
540 }
541
542 /* Any cleanup work */
543 printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
544 smp_cpus_done(setup_max_cpus);
545}
546
351f8f8e 547/*
bd924e8c
TH
548 * Call a function on all processors. May be used during early boot while
549 * early_boot_irqs_disabled is set. Use local_irq_save/restore() instead
550 * of local_irq_disable/enable().
351f8f8e
AW
551 */
552int on_each_cpu(void (*func) (void *info), void *info, int wait)
553{
bd924e8c 554 unsigned long flags;
351f8f8e
AW
555 int ret = 0;
556
557 preempt_disable();
558 ret = smp_call_function(func, info, wait);
bd924e8c 559 local_irq_save(flags);
351f8f8e 560 func(info);
bd924e8c 561 local_irq_restore(flags);
351f8f8e
AW
562 preempt_enable();
563 return ret;
564}
565EXPORT_SYMBOL(on_each_cpu);
3fc498f1
GBY
566
567/**
568 * on_each_cpu_mask(): Run a function on processors specified by
569 * cpumask, which may include the local processor.
570 * @mask: The set of cpus to run on (only runs on online subset).
571 * @func: The function to run. This must be fast and non-blocking.
572 * @info: An arbitrary pointer to pass to the function.
573 * @wait: If true, wait (atomically) until function has completed
574 * on other CPUs.
575 *
576 * If @wait is true, then returns once @func has returned.
577 *
578 * You must not call this function with disabled interrupts or
579 * from a hardware interrupt handler or from a bottom half handler.
580 */
581void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
582 void *info, bool wait)
583{
584 int cpu = get_cpu();
585
586 smp_call_function_many(mask, func, info, wait);
587 if (cpumask_test_cpu(cpu, mask)) {
588 local_irq_disable();
589 func(info);
590 local_irq_enable();
591 }
592 put_cpu();
593}
594EXPORT_SYMBOL(on_each_cpu_mask);
b3a7e98e
GBY
595
596/*
597 * on_each_cpu_cond(): Call a function on each processor for which
598 * the supplied function cond_func returns true, optionally waiting
599 * for all the required CPUs to finish. This may include the local
600 * processor.
601 * @cond_func: A callback function that is passed a cpu id and
602 * the the info parameter. The function is called
603 * with preemption disabled. The function should
604 * return a blooean value indicating whether to IPI
605 * the specified CPU.
606 * @func: The function to run on all applicable CPUs.
607 * This must be fast and non-blocking.
608 * @info: An arbitrary pointer to pass to both functions.
609 * @wait: If true, wait (atomically) until function has
610 * completed on other CPUs.
611 * @gfp_flags: GFP flags to use when allocating the cpumask
612 * used internally by the function.
613 *
614 * The function might sleep if the GFP flags indicates a non
615 * atomic allocation is allowed.
616 *
617 * Preemption is disabled to protect against CPUs going offline but not online.
618 * CPUs going online during the call will not be seen or sent an IPI.
619 *
620 * You must not call this function with disabled interrupts or
621 * from a hardware interrupt handler or from a bottom half handler.
622 */
623void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
624 smp_call_func_t func, void *info, bool wait,
625 gfp_t gfp_flags)
626{
627 cpumask_var_t cpus;
628 int cpu, ret;
629
630 might_sleep_if(gfp_flags & __GFP_WAIT);
631
632 if (likely(zalloc_cpumask_var(&cpus, (gfp_flags|__GFP_NOWARN)))) {
633 preempt_disable();
634 for_each_online_cpu(cpu)
635 if (cond_func(cpu, info))
636 cpumask_set_cpu(cpu, cpus);
637 on_each_cpu_mask(cpus, func, info, wait);
638 preempt_enable();
639 free_cpumask_var(cpus);
640 } else {
641 /*
642 * No free cpumask, bother. No matter, we'll
643 * just have to IPI them one by one.
644 */
645 preempt_disable();
646 for_each_online_cpu(cpu)
647 if (cond_func(cpu, info)) {
648 ret = smp_call_function_single(cpu, func,
649 info, wait);
650 WARN_ON_ONCE(!ret);
651 }
652 preempt_enable();
653 }
654}
655EXPORT_SYMBOL(on_each_cpu_cond);
f37f435f
TG
656
657static void do_nothing(void *unused)
658{
659}
660
661/**
662 * kick_all_cpus_sync - Force all cpus out of idle
663 *
664 * Used to synchronize the update of pm_idle function pointer. It's
665 * called after the pointer is updated and returns after the dummy
666 * callback function has been executed on all cpus. The execution of
667 * the function can only happen on the remote cpus after they have
668 * left the idle function which had been called via pm_idle function
669 * pointer. So it's guaranteed that nothing uses the previous pointer
670 * anymore.
671 */
672void kick_all_cpus_sync(void)
673{
674 /* Make sure the change is visible before we kick the cpus */
675 smp_mb();
676 smp_call_function(do_nothing, NULL, 1);
677}
678EXPORT_SYMBOL_GPL(kick_all_cpus_sync);