2019-05-19 05:08:55 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2009-01-09 13:27:08 -07:00
|
|
|
/*
|
|
|
|
* Uniprocessor-only support functions. The counterpart to kernel/smp.c
|
|
|
|
*/
|
|
|
|
|
2009-01-12 08:04:37 -07:00
|
|
|
#include <linux/interrupt.h>
|
2009-01-09 13:27:08 -07:00
|
|
|
#include <linux/kernel.h>
|
2011-05-23 11:51:41 -07:00
|
|
|
#include <linux/export.h>
|
2009-01-09 13:27:08 -07:00
|
|
|
#include <linux/smp.h>
|
2016-08-28 23:48:43 -07:00
|
|
|
#include <linux/hypervisor.h>
|
2009-01-09 13:27:08 -07:00
|
|
|
|
|
|
|
int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
|
|
|
|
int wait)
|
|
|
|
{
|
2013-09-11 14:23:25 -07:00
|
|
|
unsigned long flags;
|
|
|
|
|
2020-02-05 07:34:09 -07:00
|
|
|
if (cpu != 0)
|
|
|
|
return -ENXIO;
|
2009-01-10 21:15:21 -07:00
|
|
|
|
2013-09-11 14:23:25 -07:00
|
|
|
local_irq_save(flags);
|
|
|
|
func(info);
|
|
|
|
local_irq_restore(flags);
|
2009-01-10 21:15:21 -07:00
|
|
|
|
2009-01-09 13:27:08 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(smp_call_function_single);
|
2013-09-11 14:23:24 -07:00
|
|
|
|
2023-08-30 23:31:28 -07:00
|
|
|
int smp_call_function_single_async(int cpu, call_single_data_t *csd)
|
2013-11-14 15:32:08 -07:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
|
|
|
csd->func(csd->info);
|
|
|
|
local_irq_restore(flags);
|
2014-02-24 08:39:57 -07:00
|
|
|
return 0;
|
2013-11-14 15:32:08 -07:00
|
|
|
}
|
2014-02-24 08:40:02 -07:00
|
|
|
EXPORT_SYMBOL(smp_call_function_single_async);
|
2013-11-14 15:32:08 -07:00
|
|
|
|
2013-09-11 14:23:24 -07:00
|
|
|
/*
|
|
|
|
* Preemption is disabled here to make sure the cond_func is called under the
|
2021-05-06 18:06:33 -07:00
|
|
|
* same conditions in UP and SMP.
|
2013-09-11 14:23:24 -07:00
|
|
|
*/
|
2020-01-17 02:01:35 -07:00
|
|
|
void on_each_cpu_cond_mask(smp_cond_func_t cond_func, smp_call_func_t func,
|
2020-01-17 02:01:37 -07:00
|
|
|
void *info, bool wait, const struct cpumask *mask)
|
2013-09-11 14:23:24 -07:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
preempt_disable();
|
2021-02-20 16:17:12 -07:00
|
|
|
if ((!cond_func || cond_func(0, info)) && cpumask_test_cpu(0, mask)) {
|
2013-09-11 14:23:24 -07:00
|
|
|
local_irq_save(flags);
|
|
|
|
func(info);
|
|
|
|
local_irq_restore(flags);
|
|
|
|
}
|
|
|
|
preempt_enable();
|
|
|
|
}
|
2018-09-25 20:58:41 -07:00
|
|
|
EXPORT_SYMBOL(on_each_cpu_cond_mask);
|
|
|
|
|
2016-08-28 23:48:44 -07:00
|
|
|
int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (cpu != 0)
|
|
|
|
return -ENXIO;
|
|
|
|
|
|
|
|
if (phys)
|
|
|
|
hypervisor_pin_vcpu(0);
|
|
|
|
ret = func(par);
|
|
|
|
if (phys)
|
|
|
|
hypervisor_pin_vcpu(-1);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(smp_call_on_cpu);
|