1 // SPDX-License-Identifier: GPL-2.0-only
3 * Uniprocessor-only support functions. The counterpart to kernel/smp.c
6 #include <linux/interrupt.h>
7 #include <linux/kernel.h>
8 #include <linux/export.h>
10 #include <linux/hypervisor.h>
12 int smp_call_function_single(int cpu
, void (*func
) (void *info
), void *info
,
20 local_irq_save(flags
);
22 local_irq_restore(flags
);
26 EXPORT_SYMBOL(smp_call_function_single
);
28 int smp_call_function_single_async(int cpu
, call_single_data_t
*csd
)
32 local_irq_save(flags
);
34 local_irq_restore(flags
);
37 EXPORT_SYMBOL(smp_call_function_single_async
);
39 void on_each_cpu(smp_call_func_t func
, void *info
, int wait
)
43 local_irq_save(flags
);
45 local_irq_restore(flags
);
47 EXPORT_SYMBOL(on_each_cpu
);
50 * Note we still need to test the mask even for UP
51 * because we actually can get an empty mask from
52 * code that on SMP might call us without the local
55 void on_each_cpu_mask(const struct cpumask
*mask
,
56 smp_call_func_t func
, void *info
, bool wait
)
60 if (cpumask_test_cpu(0, mask
)) {
61 local_irq_save(flags
);
63 local_irq_restore(flags
);
66 EXPORT_SYMBOL(on_each_cpu_mask
);
69 * Preemption is disabled here to make sure the cond_func is called under the
70 * same condtions in UP and SMP.
72 void on_each_cpu_cond_mask(smp_cond_func_t cond_func
, smp_call_func_t func
,
73 void *info
, bool wait
, const struct cpumask
*mask
)
78 if (cond_func(0, info
)) {
79 local_irq_save(flags
);
81 local_irq_restore(flags
);
85 EXPORT_SYMBOL(on_each_cpu_cond_mask
);
87 void on_each_cpu_cond(smp_cond_func_t cond_func
, smp_call_func_t func
,
88 void *info
, bool wait
)
90 on_each_cpu_cond_mask(cond_func
, func
, info
, wait
, NULL
);
92 EXPORT_SYMBOL(on_each_cpu_cond
);
94 int smp_call_on_cpu(unsigned int cpu
, int (*func
)(void *), void *par
, bool phys
)
102 hypervisor_pin_vcpu(0);
105 hypervisor_pin_vcpu(-1);
109 EXPORT_SYMBOL_GPL(smp_call_on_cpu
);