aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/smp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/smp.h')
-rw-r--r--include/linux/smp.h21
1 files changed, 5 insertions, 16 deletions
diff --git a/include/linux/smp.h b/include/linux/smp.h
index 3724a9070907..cfb7ca094b38 100644
--- a/include/linux/smp.h
+++ b/include/linux/smp.h
@@ -11,7 +11,6 @@
11#include <linux/list.h> 11#include <linux/list.h>
12#include <linux/cpumask.h> 12#include <linux/cpumask.h>
13#include <linux/init.h> 13#include <linux/init.h>
14#include <linux/irqflags.h>
15 14
16extern void cpu_idle(void); 15extern void cpu_idle(void);
17 16
@@ -30,6 +29,11 @@ int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
30 int wait); 29 int wait);
31 30
32/* 31/*
32 * Call a function on all processors
33 */
34int on_each_cpu(smp_call_func_t func, void *info, int wait);
35
36/*
33 * Call a function on processors specified by mask, which might include 37 * Call a function on processors specified by mask, which might include
34 * the local one. 38 * the local one.
35 */ 39 */
@@ -112,11 +116,6 @@ static inline void call_function_init(void) { }
112#endif 116#endif
113 117
114/* 118/*
115 * Call a function on all processors
116 */
117int on_each_cpu(smp_call_func_t func, void *info, int wait);
118
119/*
120 * Mark the boot cpu "online" so that it can call console drivers in 119 * Mark the boot cpu "online" so that it can call console drivers in
121 * printk() and can access its per-cpu storage. 120 * printk() and can access its per-cpu storage.
122 */ 121 */
@@ -141,16 +140,6 @@ static inline int up_smp_call_function(smp_call_func_t func, void *info)
141#define smp_call_function(func, info, wait) \ 140#define smp_call_function(func, info, wait) \
142 (up_smp_call_function(func, info)) 141 (up_smp_call_function(func, info))
143 142
144static inline int on_each_cpu(smp_call_func_t func, void *info, int wait)
145{
146 unsigned long flags;
147
148 local_irq_save(flags);
149 func(info);
150 local_irq_restore(flags);
151 return 0;
152}
153
154static inline void smp_send_reschedule(int cpu) { } 143static inline void smp_send_reschedule(int cpu) { }
155#define smp_prepare_boot_cpu() do {} while (0) 144#define smp_prepare_boot_cpu() do {} while (0)
156#define smp_call_function_many(mask, func, info, wait) \ 145#define smp_call_function_many(mask, func, info, wait) \