smp: Remove superfluous cond_func check in smp_call_function_many_cond()
[linux-2.6-block.git] / kernel / up.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
53ce3d95
AM
2/*
3 * Uniprocessor-only support functions. The counterpart to kernel/smp.c
4 */
5
6e962814 6#include <linux/interrupt.h>
53ce3d95 7#include <linux/kernel.h>
9984de1a 8#include <linux/export.h>
53ce3d95 9#include <linux/smp.h>
47ae4b05 10#include <linux/hypervisor.h>
53ce3d95
AM
11
12int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
13 int wait)
14{
081192b2
DD
15 unsigned long flags;
16
93423b86
IM
17 WARN_ON(cpu != 0);
18
081192b2
DD
19 local_irq_save(flags);
20 func(info);
21 local_irq_restore(flags);
93423b86 22
53ce3d95
AM
23 return 0;
24}
25EXPORT_SYMBOL(smp_call_function_single);
fa688207 26
966a9671 27int smp_call_function_single_async(int cpu, call_single_data_t *csd)
40c01e8b
CH
28{
29 unsigned long flags;
30
31 local_irq_save(flags);
32 csd->func(csd->info);
33 local_irq_restore(flags);
08eed44c 34 return 0;
40c01e8b 35}
c46fff2a 36EXPORT_SYMBOL(smp_call_function_single_async);
40c01e8b 37
caa75932 38void on_each_cpu(smp_call_func_t func, void *info, int wait)
bff2dc42
DD
39{
40 unsigned long flags;
41
42 local_irq_save(flags);
43 func(info);
44 local_irq_restore(flags);
bff2dc42
DD
45}
46EXPORT_SYMBOL(on_each_cpu);
47
fa688207
DD
48/*
49 * Note we still need to test the mask even for UP
50 * because we actually can get an empty mask from
51 * code that on SMP might call us without the local
52 * CPU in the mask.
53 */
54void on_each_cpu_mask(const struct cpumask *mask,
55 smp_call_func_t func, void *info, bool wait)
56{
57 unsigned long flags;
58
59 if (cpumask_test_cpu(0, mask)) {
60 local_irq_save(flags);
61 func(info);
62 local_irq_restore(flags);
63 }
64}
65EXPORT_SYMBOL(on_each_cpu_mask);
66
67/*
68 * Preemption is disabled here to make sure the cond_func is called under the
69 * same condtions in UP and SMP.
70 */
5671d814 71void on_each_cpu_cond_mask(smp_cond_func_t cond_func, smp_call_func_t func,
cb923159 72 void *info, bool wait, const struct cpumask *mask)
fa688207
DD
73{
74 unsigned long flags;
75
76 preempt_disable();
77 if (cond_func(0, info)) {
78 local_irq_save(flags);
79 func(info);
80 local_irq_restore(flags);
81 }
82 preempt_enable();
83}
7d49b28a
RR
84EXPORT_SYMBOL(on_each_cpu_cond_mask);
85
5671d814 86void on_each_cpu_cond(smp_cond_func_t cond_func, smp_call_func_t func,
cb923159 87 void *info, bool wait)
7d49b28a 88{
cb923159 89 on_each_cpu_cond_mask(cond_func, func, info, wait, NULL);
7d49b28a 90}
fa688207 91EXPORT_SYMBOL(on_each_cpu_cond);
df8ce9d7
JG
92
93int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys)
94{
95 int ret;
96
97 if (cpu != 0)
98 return -ENXIO;
99
100 if (phys)
101 hypervisor_pin_vcpu(0);
102 ret = func(par);
103 if (phys)
104 hypervisor_pin_vcpu(-1);
105
106 return ret;
107}
108EXPORT_SYMBOL_GPL(smp_call_on_cpu);