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