Blame view

kernel/up.c 1.5 KB
457c89965   Thomas Gleixner   treewide: Add SPD...
1
  // SPDX-License-Identifier: GPL-2.0-only
53ce3d956   Andrew Morton   smp_call_function...
2
3
4
  /*
   * Uniprocessor-only support functions.  The counterpart to kernel/smp.c
   */
6e9628141   Ingo Molnar   smp_call_function...
5
  #include <linux/interrupt.h>
53ce3d956   Andrew Morton   smp_call_function...
6
  #include <linux/kernel.h>
9984de1a5   Paul Gortmaker   kernel: Map most ...
7
  #include <linux/export.h>
53ce3d956   Andrew Morton   smp_call_function...
8
  #include <linux/smp.h>
47ae4b05d   Juergen Gross   virt, sched: Add ...
9
  #include <linux/hypervisor.h>
53ce3d956   Andrew Morton   smp_call_function...
10
11
12
13
  
  int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
  				int wait)
  {
081192b25   David Daney   up.c: use local_i...
14
  	unsigned long flags;
1e474b28e   Paul E. McKenney   smp/up: Make smp_...
15
16
  	if (cpu != 0)
  		return -ENXIO;
93423b866   Ingo Molnar   smp_call_function...
17

081192b25   David Daney   up.c: use local_i...
18
19
20
  	local_irq_save(flags);
  	func(info);
  	local_irq_restore(flags);
93423b866   Ingo Molnar   smp_call_function...
21

53ce3d956   Andrew Morton   smp_call_function...
22
23
24
  	return 0;
  }
  EXPORT_SYMBOL(smp_call_function_single);
fa688207c   David Daney   smp: quit uncondi...
25

1139aeb1c   Arnd Bergmann   smp: Fix smp_call...
26
  int smp_call_function_single_async(int cpu, struct __call_single_data *csd)
40c01e8bd   Christoph Hellwig   kernel: provide a...
27
28
29
30
31
32
  {
  	unsigned long flags;
  
  	local_irq_save(flags);
  	csd->func(csd->info);
  	local_irq_restore(flags);
08eed44c7   Jan Kara   smp: Teach __smp_...
33
  	return 0;
40c01e8bd   Christoph Hellwig   kernel: provide a...
34
  }
c46fff2a3   Frederic Weisbecker   smp: Rename __smp...
35
  EXPORT_SYMBOL(smp_call_function_single_async);
40c01e8bd   Christoph Hellwig   kernel: provide a...
36

fa688207c   David Daney   smp: quit uncondi...
37
38
  /*
   * Preemption is disabled here to make sure the cond_func is called under the
f0fffaff0   Bhaskar Chowdhury   kernel/up.c: fix ...
39
   * same conditions in UP and SMP.
fa688207c   David Daney   smp: quit uncondi...
40
   */
5671d814d   Sebastian Andrzej Siewior   smp: Use smp_cond...
41
  void on_each_cpu_cond_mask(smp_cond_func_t cond_func, smp_call_func_t func,
cb923159b   Sebastian Andrzej Siewior   smp: Remove alloc...
42
  			   void *info, bool wait, const struct cpumask *mask)
fa688207c   David Daney   smp: quit uncondi...
43
44
45
46
  {
  	unsigned long flags;
  
  	preempt_disable();
a5aa5ce30   Nadav Amit   smp: Inline on_ea...
47
  	if ((!cond_func || cond_func(0, info)) && cpumask_test_cpu(0, mask)) {
fa688207c   David Daney   smp: quit uncondi...
48
49
50
51
52
53
  		local_irq_save(flags);
  		func(info);
  		local_irq_restore(flags);
  	}
  	preempt_enable();
  }
7d49b28a8   Rik van Riel   smp,cpumask: intr...
54
  EXPORT_SYMBOL(on_each_cpu_cond_mask);
df8ce9d78   Juergen Gross   smp: Add function...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  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);