]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/smp.h
<linux/uaccess.h>: Fix copy_in_user() declaration
[mirror_ubuntu-artful-kernel.git] / include / linux / smp.h
CommitLineData
1da177e4
LT
1#ifndef __LINUX_SMP_H
2#define __LINUX_SMP_H
3
4/*
5 * Generic SMP support
6 * Alan Cox. <alan@redhat.com>
7 */
8
79974a0e 9#include <linux/errno.h>
54514a70 10#include <linux/types.h>
3d442233 11#include <linux/list.h>
3d442233 12#include <linux/cpumask.h>
04948c7f 13#include <linux/init.h>
6897fc22 14#include <linux/llist.h>
1da177e4 15
3a5f65df 16typedef void (*smp_call_func_t)(void *info);
3d442233 17struct call_single_data {
0ebeb79c 18 struct llist_node llist;
3a5f65df 19 smp_call_func_t func;
3d442233 20 void *info;
f4d03bd1 21 unsigned int flags;
3d442233
JA
22};
23
e057d7ae
MT
24/* total number of cpus in this system (may exceed NR_CPUS) */
25extern unsigned int total_cpus;
26
3a5f65df
DH
27int smp_call_function_single(int cpuid, smp_call_func_t func, void *info,
28 int wait);
53ce3d95 29
bff2dc42
DD
30/*
31 * Call a function on all processors
32 */
33int on_each_cpu(smp_call_func_t func, void *info, int wait);
34
fa688207
DD
35/*
36 * Call a function on processors specified by mask, which might include
37 * the local one.
38 */
39void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
40 void *info, bool wait);
41
42/*
43 * Call a function on each processor for which the supplied function
44 * cond_func returns a positive value. This may include the local
45 * processor.
46 */
47void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
48 smp_call_func_t func, void *info, bool wait,
49 gfp_t gfp_flags);
50
c46fff2a 51int smp_call_function_single_async(int cpu, struct call_single_data *csd);
7cf64f86 52
1da177e4
LT
53#ifdef CONFIG_SMP
54
55#include <linux/preempt.h>
56#include <linux/kernel.h>
57#include <linux/compiler.h>
58#include <linux/thread_info.h>
59#include <asm/smp.h>
1da177e4
LT
60
61/*
62 * main cross-CPU interfaces, handles INIT, TLB flush, STOP, etc.
63 * (defined in asm header):
d1dedb52 64 */
1da177e4
LT
65
66/*
67 * stops all CPUs but the current one:
68 */
69extern void smp_send_stop(void);
70
71/*
72 * sends a 'reschedule' event to another CPU:
73 */
74extern void smp_send_reschedule(int cpu);
75
76
77/*
78 * Prepare machine for booting other CPUs.
79 */
80extern void smp_prepare_cpus(unsigned int max_cpus);
81
82/*
83 * Bring a CPU up
84 */
8239c25f 85extern int __cpu_up(unsigned int cpunum, struct task_struct *tidle);
1da177e4
LT
86
87/*
88 * Final polishing of CPUs
89 */
90extern void smp_cpus_done(unsigned int max_cpus);
91
92/*
93 * Call a function on all other processors
94 */
3a5f65df 95int smp_call_function(smp_call_func_t func, void *info, int wait);
54b11e6d 96void smp_call_function_many(const struct cpumask *mask,
3a5f65df 97 smp_call_func_t func, void *info, bool wait);
2d3854a3 98
2ea6dec4 99int smp_call_function_any(const struct cpumask *mask,
3a5f65df 100 smp_call_func_t func, void *info, int wait);
2ea6dec4 101
f37f435f 102void kick_all_cpus_sync(void);
c6f4459f 103void wake_up_all_idle_cpus(void);
f37f435f 104
3d442233
JA
105/*
106 * Generic and arch helpers
107 */
d8ad7d11 108void __init call_function_init(void);
3d442233 109void generic_smp_call_function_single_interrupt(void);
9a46ad6d
SL
110#define generic_smp_call_function_interrupt \
111 generic_smp_call_function_single_interrupt
a3bc0dbc 112
1da177e4
LT
113/*
114 * Mark the boot cpu "online" so that it can call console drivers in
115 * printk() and can access its per-cpu storage.
116 */
117void smp_prepare_boot_cpu(void);
118
ca74a6f8 119extern unsigned int setup_max_cpus;
34db18a0
AW
120extern void __init setup_nr_cpu_ids(void);
121extern void __init smp_init(void);
ca74a6f8 122
8ce371f9
PZ
123extern int __boot_cpu_id;
124
125static inline int get_boot_cpu_id(void)
126{
127 return __boot_cpu_id;
128}
129
1da177e4
LT
130#else /* !SMP */
131
d1dedb52
IM
132static inline void smp_send_stop(void) { }
133
1da177e4
LT
134/*
135 * These macros fold the SMP functionality into a single CPU system
136 */
39c715b7 137#define raw_smp_processor_id() 0
3a5f65df 138static inline int up_smp_call_function(smp_call_func_t func, void *info)
3c30b06d
CK
139{
140 return 0;
141}
8691e5a8 142#define smp_call_function(func, info, wait) \
a5fbb6d1 143 (up_smp_call_function(func, info))
3b8967d7 144
79a88102 145static inline void smp_send_reschedule(int cpu) { }
2ac6608c 146#define smp_prepare_boot_cpu() do {} while (0)
d2ff9118
RR
147#define smp_call_function_many(mask, func, info, wait) \
148 (up_smp_call_function(func, info))
d8ad7d11 149static inline void call_function_init(void) { }
2ea6dec4
RR
150
151static inline int
3a5f65df 152smp_call_function_any(const struct cpumask *mask, smp_call_func_t func,
2ea6dec4 153 void *info, int wait)
3d442233 154{
2ea6dec4 155 return smp_call_function_single(0, func, info, wait);
3d442233 156}
2ea6dec4 157
f37f435f 158static inline void kick_all_cpus_sync(void) { }
c6f4459f 159static inline void wake_up_all_idle_cpus(void) { }
f37f435f 160
30b8b006
TG
161#ifdef CONFIG_UP_LATE_INIT
162extern void __init up_late_init(void);
163static inline void smp_init(void) { up_late_init(); }
164#else
165static inline void smp_init(void) { }
166#endif
167
8ce371f9
PZ
168static inline int get_boot_cpu_id(void)
169{
170 return 0;
171}
172
1da177e4
LT
173#endif /* !SMP */
174
175/*
39c715b7 176 * smp_processor_id(): get the current CPU ID.
1da177e4 177 *
cfd8d6c0 178 * if DEBUG_PREEMPT is enabled then we check whether it is
39c715b7
IM
179 * used in a preemption-safe way. (smp_processor_id() is safe
180 * if it's used in a preemption-off critical section, or in
181 * a thread that is bound to the current CPU.)
1da177e4 182 *
39c715b7
IM
183 * NOTE: raw_smp_processor_id() is for internal use only
184 * (smp_processor_id() is the preferred variant), but in rare
185 * instances it might also be used to turn off false positives
186 * (i.e. smp_processor_id() use that the debugging code reports but
187 * which use for some reason is legal). Don't use this to hack around
188 * the warning message, as your code might not work under PREEMPT.
1da177e4 189 */
39c715b7
IM
190#ifdef CONFIG_DEBUG_PREEMPT
191 extern unsigned int debug_smp_processor_id(void);
192# define smp_processor_id() debug_smp_processor_id()
1da177e4 193#else
39c715b7 194# define smp_processor_id() raw_smp_processor_id()
1da177e4
LT
195#endif
196
197#define get_cpu() ({ preempt_disable(); smp_processor_id(); })
198#define put_cpu() preempt_enable()
1da177e4 199
a146649b
IM
200/*
201 * Callback to arch code if there's nosmp or maxcpus=0 on the
202 * boot command line:
203 */
204extern void arch_disable_smp_support(void);
205
fb37bb04
PG
206extern void arch_enable_nonboot_cpus_begin(void);
207extern void arch_enable_nonboot_cpus_end(void);
208
033ab7f8
AM
209void smp_setup_processor_id(void);
210
df8ce9d7
JG
211int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par,
212 bool phys);
213
31487f83
RW
214/* SMP core functions */
215int smpcfd_prepare_cpu(unsigned int cpu);
216int smpcfd_dead_cpu(unsigned int cpu);
217int smpcfd_dying_cpu(unsigned int cpu);
218
1da177e4 219#endif /* __LINUX_SMP_H */