Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / kernel / up.c
blob509403e3fbc6b5bffbef9ecaa47cad6c68c03c3f
1 /*
2 * Uniprocessor-only support functions. The counterpart to kernel/smp.c
3 */
5 #include <linux/interrupt.h>
6 #include <linux/kernel.h>
7 #include <linux/export.h>
8 #include <linux/smp.h>
10 int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
11 int wait)
13 unsigned long flags;
15 WARN_ON(cpu != 0);
17 local_irq_save(flags);
18 func(info);
19 local_irq_restore(flags);
21 return 0;
23 EXPORT_SYMBOL(smp_call_function_single);
25 void __smp_call_function_single(int cpu, struct call_single_data *csd,
26 int wait)
28 unsigned long flags;
30 local_irq_save(flags);
31 csd->func(csd->info);
32 local_irq_restore(flags);
34 EXPORT_SYMBOL(__smp_call_function_single);
36 int on_each_cpu(smp_call_func_t func, void *info, int wait)
38 unsigned long flags;
40 local_irq_save(flags);
41 func(info);
42 local_irq_restore(flags);
43 return 0;
45 EXPORT_SYMBOL(on_each_cpu);
48 * Note we still need to test the mask even for UP
49 * because we actually can get an empty mask from
50 * code that on SMP might call us without the local
51 * CPU in the mask.
53 void on_each_cpu_mask(const struct cpumask *mask,
54 smp_call_func_t func, void *info, bool wait)
56 unsigned long flags;
58 if (cpumask_test_cpu(0, mask)) {
59 local_irq_save(flags);
60 func(info);
61 local_irq_restore(flags);
64 EXPORT_SYMBOL(on_each_cpu_mask);
67 * Preemption is disabled here to make sure the cond_func is called under the
68 * same condtions in UP and SMP.
70 void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
71 smp_call_func_t func, void *info, bool wait,
72 gfp_t gfp_flags)
74 unsigned long flags;
76 preempt_disable();
77 if (cond_func(0, info)) {
78 local_irq_save(flags);
79 func(info);
80 local_irq_restore(flags);
82 preempt_enable();
84 EXPORT_SYMBOL(on_each_cpu_cond);