2 * Uniprocessor-only support functions. The counterpart to kernel/smp.c
5 #include <linux/interrupt.h>
6 #include <linux/kernel.h>
7 #include <linux/export.h>
9 #include <linux/hypervisor.h>
11 int smp_call_function_single(int cpu
, void (*func
) (void *info
), void *info
,
18 local_irq_save(flags
);
20 local_irq_restore(flags
);
24 EXPORT_SYMBOL(smp_call_function_single
);
26 int smp_call_function_single_async(int cpu
, struct call_single_data
*csd
)
30 local_irq_save(flags
);
32 local_irq_restore(flags
);
35 EXPORT_SYMBOL(smp_call_function_single_async
);
37 int on_each_cpu(smp_call_func_t func
, void *info
, int wait
)
41 local_irq_save(flags
);
43 local_irq_restore(flags
);
46 EXPORT_SYMBOL(on_each_cpu
);
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
54 void on_each_cpu_mask(const struct cpumask
*mask
,
55 smp_call_func_t func
, void *info
, bool wait
)
59 if (cpumask_test_cpu(0, mask
)) {
60 local_irq_save(flags
);
62 local_irq_restore(flags
);
65 EXPORT_SYMBOL(on_each_cpu_mask
);
68 * Preemption is disabled here to make sure the cond_func is called under the
69 * same condtions in UP and SMP.
71 void on_each_cpu_cond(bool (*cond_func
)(int cpu
, void *info
),
72 smp_call_func_t func
, void *info
, bool wait
,
78 if (cond_func(0, info
)) {
79 local_irq_save(flags
);
81 local_irq_restore(flags
);
85 EXPORT_SYMBOL(on_each_cpu_cond
);
87 int smp_call_on_cpu(unsigned int cpu
, int (*func
)(void *), void *par
, bool phys
)
95 hypervisor_pin_vcpu(0);
98 hypervisor_pin_vcpu(-1);
102 EXPORT_SYMBOL_GPL(smp_call_on_cpu
);