blob: 8902f23bb7702c30d00d2ce3ab66caf8e73599b7 [file] [log] [blame]
Tejun Heo62fde542014-06-17 19:12:34 -04001/*
2 * linux/percpu-defs.h - basic definitions for percpu areas
3 *
4 * DO NOT INCLUDE DIRECTLY OUTSIDE PERCPU IMPLEMENTATION PROPER.
5 *
6 * This file is separate from linux/percpu.h to avoid cyclic inclusion
7 * dependency from arch header files. Only to be included from
8 * asm/percpu.h.
9 *
10 * This file includes macros necessary to declare percpu sections and
11 * variables, and definitions of percpu accessors and operations. It
12 * should provide enough percpu features to arch header files even when
13 * they can only include asm/percpu.h to avoid cyclic inclusion dependency.
14 */
15
David Howells5028eaa2009-04-21 23:00:29 +010016#ifndef _LINUX_PERCPU_DEFS_H
17#define _LINUX_PERCPU_DEFS_H
18
Tejun Heo62fde542014-06-17 19:12:34 -040019#ifdef CONFIG_SMP
20
21#ifdef MODULE
22#define PER_CPU_SHARED_ALIGNED_SECTION ""
23#define PER_CPU_ALIGNED_SECTION ""
24#else
25#define PER_CPU_SHARED_ALIGNED_SECTION "..shared_aligned"
26#define PER_CPU_ALIGNED_SECTION "..shared_aligned"
27#endif
28#define PER_CPU_FIRST_SECTION "..first"
29
30#else
31
32#define PER_CPU_SHARED_ALIGNED_SECTION ""
33#define PER_CPU_ALIGNED_SECTION "..shared_aligned"
34#define PER_CPU_FIRST_SECTION ""
35
36#endif
37
Kees Cooke71fac02018-01-03 10:17:35 -080038#ifdef CONFIG_PAGE_TABLE_ISOLATION
Richard Fellner13be4482017-05-04 14:26:50 +020039#define USER_MAPPED_SECTION "..user_mapped"
40#else
41#define USER_MAPPED_SECTION ""
42#endif
43
David Howells5028eaa2009-04-21 23:00:29 +010044/*
David Howells5028eaa2009-04-21 23:00:29 +010045 * Base implementations of per-CPU variable declarations and definitions, where
46 * the section in which the variable is to be placed is provided by the
Tejun Heo7c756e62009-06-24 15:13:50 +090047 * 'sec' argument. This may be used to affect the parameters governing the
David Howells5028eaa2009-04-21 23:00:29 +010048 * variable's storage.
49 *
50 * NOTE! The sections for the DECLARE and for the DEFINE must match, lest
51 * linkage errors occur due the compiler generating the wrong code to access
52 * that section.
53 */
Tejun Heo7c756e62009-06-24 15:13:50 +090054#define __PCPU_ATTRS(sec) \
Rusty Russelle0fdb0e2009-10-29 22:34:15 +090055 __percpu __attribute__((section(PER_CPU_BASE_SECTION sec))) \
Tejun Heo7c756e62009-06-24 15:13:50 +090056 PER_CPU_ATTRIBUTES
David Howells5028eaa2009-04-21 23:00:29 +010057
Tejun Heo7c756e62009-06-24 15:13:50 +090058#define __PCPU_DUMMY_ATTRS \
59 __attribute__((section(".discard"), unused))
60
61/*
62 * s390 and alpha modules require percpu variables to be defined as
63 * weak to force the compiler to generate GOT based external
64 * references for them. This is necessary because percpu sections
65 * will be located outside of the usually addressable area.
66 *
67 * This definition puts the following two extra restrictions when
68 * defining percpu variables.
69 *
70 * 1. The symbol must be globally unique, even the static ones.
71 * 2. Static percpu variables cannot be defined inside a function.
72 *
73 * Archs which need weak percpu definitions should define
74 * ARCH_NEEDS_WEAK_PER_CPU in asm/percpu.h when necessary.
75 *
76 * To ensure that the generic code observes the above two
77 * restrictions, if CONFIG_DEBUG_FORCE_WEAK_PER_CPU is set weak
78 * definition is used for all cases.
79 */
80#if defined(ARCH_NEEDS_WEAK_PER_CPU) || defined(CONFIG_DEBUG_FORCE_WEAK_PER_CPU)
81/*
82 * __pcpu_scope_* dummy variable is used to enforce scope. It
83 * receives the static modifier when it's used in front of
84 * DEFINE_PER_CPU() and will trigger build failure if
85 * DECLARE_PER_CPU() is used for the same variable.
86 *
87 * __pcpu_unique_* dummy variable is used to enforce symbol uniqueness
88 * such that hidden weak symbol collision, which will cause unrelated
89 * variables to share the same address, can be detected during build.
90 */
91#define DECLARE_PER_CPU_SECTION(type, name, sec) \
92 extern __PCPU_DUMMY_ATTRS char __pcpu_scope_##name; \
Rusty Russelldd17c8f2009-10-29 22:34:15 +090093 extern __PCPU_ATTRS(sec) __typeof__(type) name
Tejun Heo7c756e62009-06-24 15:13:50 +090094
95#define DEFINE_PER_CPU_SECTION(type, name, sec) \
96 __PCPU_DUMMY_ATTRS char __pcpu_scope_##name; \
Tejun Heo0f5e4812009-10-29 22:34:12 +090097 extern __PCPU_DUMMY_ATTRS char __pcpu_unique_##name; \
Tejun Heo7c756e62009-06-24 15:13:50 +090098 __PCPU_DUMMY_ATTRS char __pcpu_unique_##name; \
Tejun Heob1a0fbf2013-12-04 10:12:40 -050099 extern __PCPU_ATTRS(sec) __typeof__(type) name; \
Tejun Heoc43768c2009-07-04 07:13:18 +0900100 __PCPU_ATTRS(sec) PER_CPU_DEF_ATTRIBUTES __weak \
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900101 __typeof__(type) name
Tejun Heo7c756e62009-06-24 15:13:50 +0900102#else
103/*
104 * Normal declaration and definition macros.
105 */
106#define DECLARE_PER_CPU_SECTION(type, name, sec) \
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900107 extern __PCPU_ATTRS(sec) __typeof__(type) name
Tejun Heo7c756e62009-06-24 15:13:50 +0900108
109#define DEFINE_PER_CPU_SECTION(type, name, sec) \
Tejun Heoc43768c2009-07-04 07:13:18 +0900110 __PCPU_ATTRS(sec) PER_CPU_DEF_ATTRIBUTES \
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900111 __typeof__(type) name
Tejun Heo7c756e62009-06-24 15:13:50 +0900112#endif
David Howells5028eaa2009-04-21 23:00:29 +0100113
114/*
115 * Variant on the per-CPU variable declaration/definition theme used for
116 * ordinary per-CPU variables.
117 */
118#define DECLARE_PER_CPU(type, name) \
119 DECLARE_PER_CPU_SECTION(type, name, "")
120
121#define DEFINE_PER_CPU(type, name) \
122 DEFINE_PER_CPU_SECTION(type, name, "")
123
Hugh Dickins61b7a402017-08-21 20:11:43 -0700124#define DECLARE_PER_CPU_USER_MAPPED(type, name) \
Richard Fellner13be4482017-05-04 14:26:50 +0200125 DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION)
126
Hugh Dickins61b7a402017-08-21 20:11:43 -0700127#define DEFINE_PER_CPU_USER_MAPPED(type, name) \
Richard Fellner13be4482017-05-04 14:26:50 +0200128 DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION)
129
David Howells5028eaa2009-04-21 23:00:29 +0100130/*
131 * Declaration/definition used for per-CPU variables that must come first in
132 * the set of variables.
133 */
134#define DECLARE_PER_CPU_FIRST(type, name) \
135 DECLARE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION)
136
137#define DEFINE_PER_CPU_FIRST(type, name) \
138 DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION)
139
140/*
141 * Declaration/definition used for per-CPU variables that must be cacheline
142 * aligned under SMP conditions so that, whilst a particular instance of the
143 * data corresponds to a particular CPU, inefficiencies due to direct access by
144 * other CPUs are reduced by preventing the data from unnecessarily spanning
145 * cachelines.
146 *
147 * An example of this would be statistical data, where each CPU's set of data
148 * is updated by that CPU alone, but the data from across all CPUs is collated
149 * by a CPU processing a read from a proc file.
150 */
151#define DECLARE_PER_CPU_SHARED_ALIGNED(type, name) \
152 DECLARE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
153 ____cacheline_aligned_in_smp
154
155#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \
156 DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
157 ____cacheline_aligned_in_smp
158
Hugh Dickins61b7a402017-08-21 20:11:43 -0700159#define DECLARE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(type, name) \
Richard Fellner13be4482017-05-04 14:26:50 +0200160 DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION PER_CPU_SHARED_ALIGNED_SECTION) \
161 ____cacheline_aligned_in_smp
162
Hugh Dickins61b7a402017-08-21 20:11:43 -0700163#define DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(type, name) \
Richard Fellner13be4482017-05-04 14:26:50 +0200164 DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION PER_CPU_SHARED_ALIGNED_SECTION) \
165 ____cacheline_aligned_in_smp
166
Jeremy Fitzhardinge53f82452009-09-03 14:31:44 -0700167#define DECLARE_PER_CPU_ALIGNED(type, name) \
168 DECLARE_PER_CPU_SECTION(type, name, PER_CPU_ALIGNED_SECTION) \
169 ____cacheline_aligned
170
171#define DEFINE_PER_CPU_ALIGNED(type, name) \
172 DEFINE_PER_CPU_SECTION(type, name, PER_CPU_ALIGNED_SECTION) \
173 ____cacheline_aligned
174
David Howells5028eaa2009-04-21 23:00:29 +0100175/*
176 * Declaration/definition used for per-CPU variables that must be page aligned.
177 */
Tejun Heo3e352aa2009-08-03 14:10:11 +0900178#define DECLARE_PER_CPU_PAGE_ALIGNED(type, name) \
Denys Vlasenko3d9a8542010-02-20 01:03:43 +0100179 DECLARE_PER_CPU_SECTION(type, name, "..page_aligned") \
Tejun Heo3e352aa2009-08-03 14:10:11 +0900180 __aligned(PAGE_SIZE)
David Howells5028eaa2009-04-21 23:00:29 +0100181
182#define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \
Denys Vlasenko3d9a8542010-02-20 01:03:43 +0100183 DEFINE_PER_CPU_SECTION(type, name, "..page_aligned") \
Tejun Heo3e352aa2009-08-03 14:10:11 +0900184 __aligned(PAGE_SIZE)
Richard Fellner13be4482017-05-04 14:26:50 +0200185/*
186 * Declaration/definition used for per-CPU variables that must be page aligned and need to be mapped in user mode.
187 */
Hugh Dickins61b7a402017-08-21 20:11:43 -0700188#define DECLARE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(type, name) \
189 DECLARE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION"..page_aligned") \
190 __aligned(PAGE_SIZE)
Richard Fellner13be4482017-05-04 14:26:50 +0200191
Hugh Dickins61b7a402017-08-21 20:11:43 -0700192#define DEFINE_PER_CPU_PAGE_ALIGNED_USER_MAPPED(type, name) \
193 DEFINE_PER_CPU_SECTION(type, name, USER_MAPPED_SECTION"..page_aligned") \
194 __aligned(PAGE_SIZE)
David Howells5028eaa2009-04-21 23:00:29 +0100195
196/*
Shaohua Lic957ef22010-10-20 11:07:02 +0800197 * Declaration/definition used for per-CPU variables that must be read mostly.
198 */
Hugh Dickins61b7a402017-08-21 20:11:43 -0700199#define DECLARE_PER_CPU_READ_MOSTLY(type, name) \
Zhengyu He330d2822014-07-01 12:11:47 -0700200 DECLARE_PER_CPU_SECTION(type, name, "..read_mostly")
Shaohua Lic957ef22010-10-20 11:07:02 +0800201
202#define DEFINE_PER_CPU_READ_MOSTLY(type, name) \
Zhengyu He330d2822014-07-01 12:11:47 -0700203 DEFINE_PER_CPU_SECTION(type, name, "..read_mostly")
Shaohua Lic957ef22010-10-20 11:07:02 +0800204
205/*
Tejun Heo545695f2009-10-29 22:34:15 +0900206 * Intermodule exports for per-CPU variables. sparse forgets about
207 * address space across EXPORT_SYMBOL(), change EXPORT_SYMBOL() to
208 * noop if __CHECKER__.
David Howells5028eaa2009-04-21 23:00:29 +0100209 */
Tejun Heo545695f2009-10-29 22:34:15 +0900210#ifndef __CHECKER__
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900211#define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(var)
212#define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(var)
Tejun Heo545695f2009-10-29 22:34:15 +0900213#else
214#define EXPORT_PER_CPU_SYMBOL(var)
215#define EXPORT_PER_CPU_SYMBOL_GPL(var)
216#endif
David Howells5028eaa2009-04-21 23:00:29 +0100217
Tejun Heo62fde542014-06-17 19:12:34 -0400218/*
219 * Accessors and operations.
220 */
221#ifndef __ASSEMBLY__
222
Tejun Heo9c28278a22014-06-17 19:12:39 -0400223/*
Tejun Heo6fbc07b2014-06-17 19:12:40 -0400224 * __verify_pcpu_ptr() verifies @ptr is a percpu pointer without evaluating
225 * @ptr and is invoked once before a percpu area is accessed by all
226 * accessors and operations. This is performed in the generic part of
227 * percpu and arch overrides don't need to worry about it; however, if an
228 * arch wants to implement an arch-specific percpu accessor or operation,
229 * it may use __verify_pcpu_ptr() to verify the parameters.
Tejun Heo9c28278a22014-06-17 19:12:39 -0400230 *
231 * + 0 is required in order to convert the pointer type from a
232 * potential array type to a pointer to a single item of the array.
233 */
Tejun Heoeba11782014-06-17 19:12:40 -0400234#define __verify_pcpu_ptr(ptr) \
235do { \
Tejun Heo9c28278a22014-06-17 19:12:39 -0400236 const void __percpu *__vpp_verify = (typeof((ptr) + 0))NULL; \
237 (void)__vpp_verify; \
238} while (0)
239
Tejun Heo62fde542014-06-17 19:12:34 -0400240#ifdef CONFIG_SMP
241
242/*
243 * Add an offset to a pointer but keep the pointer as-is. Use RELOC_HIDE()
244 * to prevent the compiler from making incorrect assumptions about the
245 * pointer value. The weird cast keeps both GCC and sparse happy.
246 */
Tejun Heoeba11782014-06-17 19:12:40 -0400247#define SHIFT_PERCPU_PTR(__p, __offset) \
Tejun Heo6fbc07b2014-06-17 19:12:40 -0400248 RELOC_HIDE((typeof(*(__p)) __kernel __force *)(__p), (__offset))
249
250#define per_cpu_ptr(ptr, cpu) \
Tejun Heoeba11782014-06-17 19:12:40 -0400251({ \
Tejun Heo6fbc07b2014-06-17 19:12:40 -0400252 __verify_pcpu_ptr(ptr); \
253 SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu))); \
Tejun Heo62fde542014-06-17 19:12:34 -0400254})
255
Tejun Heo6fbc07b2014-06-17 19:12:40 -0400256#define raw_cpu_ptr(ptr) \
257({ \
258 __verify_pcpu_ptr(ptr); \
259 arch_raw_cpu_ptr(ptr); \
260})
Tejun Heo62fde542014-06-17 19:12:34 -0400261
262#ifdef CONFIG_DEBUG_PREEMPT
Tejun Heo6fbc07b2014-06-17 19:12:40 -0400263#define this_cpu_ptr(ptr) \
264({ \
265 __verify_pcpu_ptr(ptr); \
266 SHIFT_PERCPU_PTR(ptr, my_cpu_offset); \
267})
Tejun Heo62fde542014-06-17 19:12:34 -0400268#else
269#define this_cpu_ptr(ptr) raw_cpu_ptr(ptr)
270#endif
271
Tejun Heo62fde542014-06-17 19:12:34 -0400272#else /* CONFIG_SMP */
273
Tejun Heoeba11782014-06-17 19:12:40 -0400274#define VERIFY_PERCPU_PTR(__p) \
275({ \
276 __verify_pcpu_ptr(__p); \
277 (typeof(*(__p)) __kernel __force *)(__p); \
Tejun Heo62fde542014-06-17 19:12:34 -0400278})
279
Tejun Heoeba11782014-06-17 19:12:40 -0400280#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR(ptr); })
Tejun Heo3b8ed912014-06-17 19:12:37 -0400281#define raw_cpu_ptr(ptr) per_cpu_ptr(ptr, 0)
282#define this_cpu_ptr(ptr) raw_cpu_ptr(ptr)
Tejun Heo62fde542014-06-17 19:12:34 -0400283
284#endif /* CONFIG_SMP */
285
Tejun Heo3b8ed912014-06-17 19:12:37 -0400286#define per_cpu(var, cpu) (*per_cpu_ptr(&(var), cpu))
Tejun Heo3b8ed912014-06-17 19:12:37 -0400287
Tejun Heo9defda12014-06-17 19:12:34 -0400288/*
289 * Must be an lvalue. Since @var must be a simple identifier,
290 * we force a syntax error here if it isn't.
291 */
Tejun Heoeba11782014-06-17 19:12:40 -0400292#define get_cpu_var(var) \
293(*({ \
294 preempt_disable(); \
295 this_cpu_ptr(&var); \
296}))
Tejun Heo9defda12014-06-17 19:12:34 -0400297
298/*
299 * The weird & is necessary because sparse considers (void)(var) to be
300 * a direct dereference of percpu variable (var).
301 */
Tejun Heoeba11782014-06-17 19:12:40 -0400302#define put_cpu_var(var) \
303do { \
304 (void)&(var); \
305 preempt_enable(); \
Tejun Heo9defda12014-06-17 19:12:34 -0400306} while (0)
307
Tejun Heoeba11782014-06-17 19:12:40 -0400308#define get_cpu_ptr(var) \
309({ \
310 preempt_disable(); \
311 this_cpu_ptr(var); \
312})
Tejun Heo9defda12014-06-17 19:12:34 -0400313
Tejun Heoeba11782014-06-17 19:12:40 -0400314#define put_cpu_ptr(var) \
315do { \
316 (void)(var); \
317 preempt_enable(); \
Tejun Heo9defda12014-06-17 19:12:34 -0400318} while (0)
319
Tejun Heoa32f8d82014-06-17 19:12:39 -0400320/*
321 * Branching function to split up a function into a set of functions that
322 * are called for different scalar sizes of the objects handled.
323 */
324
325extern void __bad_size_call_parameter(void);
326
327#ifdef CONFIG_DEBUG_PREEMPT
328extern void __this_cpu_preempt_check(const char *op);
329#else
330static inline void __this_cpu_preempt_check(const char *op) { }
331#endif
332
333#define __pcpu_size_call_return(stem, variable) \
Tejun Heoeba11782014-06-17 19:12:40 -0400334({ \
335 typeof(variable) pscr_ret__; \
Tejun Heoa32f8d82014-06-17 19:12:39 -0400336 __verify_pcpu_ptr(&(variable)); \
337 switch(sizeof(variable)) { \
Tejun Heoeba11782014-06-17 19:12:40 -0400338 case 1: pscr_ret__ = stem##1(variable); break; \
339 case 2: pscr_ret__ = stem##2(variable); break; \
340 case 4: pscr_ret__ = stem##4(variable); break; \
341 case 8: pscr_ret__ = stem##8(variable); break; \
Tejun Heoa32f8d82014-06-17 19:12:39 -0400342 default: \
Tejun Heoeba11782014-06-17 19:12:40 -0400343 __bad_size_call_parameter(); break; \
Tejun Heoa32f8d82014-06-17 19:12:39 -0400344 } \
345 pscr_ret__; \
346})
347
348#define __pcpu_size_call_return2(stem, variable, ...) \
349({ \
350 typeof(variable) pscr2_ret__; \
351 __verify_pcpu_ptr(&(variable)); \
352 switch(sizeof(variable)) { \
353 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
354 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
355 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
356 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
357 default: \
358 __bad_size_call_parameter(); break; \
359 } \
360 pscr2_ret__; \
361})
362
363/*
364 * Special handling for cmpxchg_double. cmpxchg_double is passed two
365 * percpu variables. The first has to be aligned to a double word
366 * boundary and the second has to follow directly thereafter.
367 * We enforce this on all architectures even if they don't support
368 * a double cmpxchg instruction, since it's a cheap requirement, and it
369 * avoids breaking the requirement for architectures with the instruction.
370 */
371#define __pcpu_double_call_return_bool(stem, pcp1, pcp2, ...) \
372({ \
373 bool pdcrb_ret__; \
Tejun Heoeba11782014-06-17 19:12:40 -0400374 __verify_pcpu_ptr(&(pcp1)); \
Tejun Heoa32f8d82014-06-17 19:12:39 -0400375 BUILD_BUG_ON(sizeof(pcp1) != sizeof(pcp2)); \
Tejun Heoeba11782014-06-17 19:12:40 -0400376 VM_BUG_ON((unsigned long)(&(pcp1)) % (2 * sizeof(pcp1))); \
377 VM_BUG_ON((unsigned long)(&(pcp2)) != \
378 (unsigned long)(&(pcp1)) + sizeof(pcp1)); \
Tejun Heoa32f8d82014-06-17 19:12:39 -0400379 switch(sizeof(pcp1)) { \
380 case 1: pdcrb_ret__ = stem##1(pcp1, pcp2, __VA_ARGS__); break; \
381 case 2: pdcrb_ret__ = stem##2(pcp1, pcp2, __VA_ARGS__); break; \
382 case 4: pdcrb_ret__ = stem##4(pcp1, pcp2, __VA_ARGS__); break; \
383 case 8: pdcrb_ret__ = stem##8(pcp1, pcp2, __VA_ARGS__); break; \
384 default: \
385 __bad_size_call_parameter(); break; \
386 } \
387 pdcrb_ret__; \
388})
389
390#define __pcpu_size_call(stem, variable, ...) \
391do { \
392 __verify_pcpu_ptr(&(variable)); \
393 switch(sizeof(variable)) { \
394 case 1: stem##1(variable, __VA_ARGS__);break; \
395 case 2: stem##2(variable, __VA_ARGS__);break; \
396 case 4: stem##4(variable, __VA_ARGS__);break; \
397 case 8: stem##8(variable, __VA_ARGS__);break; \
398 default: \
399 __bad_size_call_parameter();break; \
400 } \
401} while (0)
402
403/*
404 * this_cpu operations (C) 2008-2013 Christoph Lameter <cl@linux.com>
405 *
406 * Optimized manipulation for memory allocated through the per cpu
407 * allocator or for addresses of per cpu variables.
408 *
409 * These operation guarantee exclusivity of access for other operations
410 * on the *same* processor. The assumption is that per cpu data is only
411 * accessed by a single processor instance (the current one).
412 *
413 * The arch code can provide optimized implementation by defining macros
414 * for certain scalar sizes. F.e. provide this_cpu_add_2() to provide per
415 * cpu atomic operations for 2 byte sized RMW actions. If arch code does
416 * not provide operations for a scalar size then the fallback in the
417 * generic code will be used.
Tejun Heoa32f8d82014-06-17 19:12:39 -0400418 *
Tejun Heoeba11782014-06-17 19:12:40 -0400419 * cmpxchg_double replaces two adjacent scalars at once. The first two
420 * parameters are per cpu variables which have to be of the same size. A
421 * truth value is returned to indicate success or failure (since a double
422 * register result is difficult to handle). There is very limited hardware
423 * support for these operations, so only certain sizes may work.
Tejun Heoa32f8d82014-06-17 19:12:39 -0400424 */
Tejun Heoa32f8d82014-06-17 19:12:39 -0400425
426/*
Tejun Heoeba11782014-06-17 19:12:40 -0400427 * Operations for contexts where we do not want to do any checks for
428 * preemptions. Unless strictly necessary, always use [__]this_cpu_*()
429 * instead.
430 *
431 * If there is no other protection through preempt disable and/or disabling
432 * interupts then one of these RMW operations can show unexpected behavior
433 * because the execution thread was rescheduled on another processor or an
434 * interrupt occurred and the same percpu variable was modified from the
435 * interrupt context.
Tejun Heoa32f8d82014-06-17 19:12:39 -0400436 */
Tejun Heoeba11782014-06-17 19:12:40 -0400437#define raw_cpu_read(pcp) __pcpu_size_call_return(raw_cpu_read_, pcp)
438#define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, pcp, val)
439#define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, pcp, val)
440#define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, pcp, val)
441#define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, pcp, val)
442#define raw_cpu_add_return(pcp, val) __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val)
443#define raw_cpu_xchg(pcp, nval) __pcpu_size_call_return2(raw_cpu_xchg_, pcp, nval)
444#define raw_cpu_cmpxchg(pcp, oval, nval) \
445 __pcpu_size_call_return2(raw_cpu_cmpxchg_, pcp, oval, nval)
446#define raw_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
447 __pcpu_double_call_return_bool(raw_cpu_cmpxchg_double_, pcp1, pcp2, oval1, oval2, nval1, nval2)
Tejun Heoa32f8d82014-06-17 19:12:39 -0400448
Tejun Heoeba11782014-06-17 19:12:40 -0400449#define raw_cpu_sub(pcp, val) raw_cpu_add(pcp, -(val))
450#define raw_cpu_inc(pcp) raw_cpu_add(pcp, 1)
451#define raw_cpu_dec(pcp) raw_cpu_sub(pcp, 1)
452#define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val))
453#define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1)
454#define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1)
Tejun Heoa32f8d82014-06-17 19:12:39 -0400455
Tejun Heoeba11782014-06-17 19:12:40 -0400456/*
457 * Operations for contexts that are safe from preemption/interrupts. These
458 * operations verify that preemption is disabled.
459 */
460#define __this_cpu_read(pcp) \
461({ \
462 __this_cpu_preempt_check("read"); \
463 raw_cpu_read(pcp); \
464})
465
466#define __this_cpu_write(pcp, val) \
467({ \
468 __this_cpu_preempt_check("write"); \
469 raw_cpu_write(pcp, val); \
470})
471
472#define __this_cpu_add(pcp, val) \
473({ \
474 __this_cpu_preempt_check("add"); \
Tejun Heocadb1c42014-06-17 19:12:39 -0400475 raw_cpu_add(pcp, val); \
Tejun Heoeba11782014-06-17 19:12:40 -0400476})
Tejun Heoa32f8d82014-06-17 19:12:39 -0400477
Tejun Heoeba11782014-06-17 19:12:40 -0400478#define __this_cpu_and(pcp, val) \
479({ \
480 __this_cpu_preempt_check("and"); \
Tejun Heocadb1c42014-06-17 19:12:39 -0400481 raw_cpu_and(pcp, val); \
Tejun Heoeba11782014-06-17 19:12:40 -0400482})
Tejun Heoa32f8d82014-06-17 19:12:39 -0400483
Tejun Heoeba11782014-06-17 19:12:40 -0400484#define __this_cpu_or(pcp, val) \
485({ \
486 __this_cpu_preempt_check("or"); \
Tejun Heocadb1c42014-06-17 19:12:39 -0400487 raw_cpu_or(pcp, val); \
Tejun Heoeba11782014-06-17 19:12:40 -0400488})
Tejun Heoa32f8d82014-06-17 19:12:39 -0400489
Tejun Heoeba11782014-06-17 19:12:40 -0400490#define __this_cpu_add_return(pcp, val) \
491({ \
492 __this_cpu_preempt_check("add_return"); \
493 raw_cpu_add_return(pcp, val); \
494})
Tejun Heoa32f8d82014-06-17 19:12:39 -0400495
Tejun Heoeba11782014-06-17 19:12:40 -0400496#define __this_cpu_xchg(pcp, nval) \
497({ \
498 __this_cpu_preempt_check("xchg"); \
499 raw_cpu_xchg(pcp, nval); \
500})
501
502#define __this_cpu_cmpxchg(pcp, oval, nval) \
503({ \
504 __this_cpu_preempt_check("cmpxchg"); \
505 raw_cpu_cmpxchg(pcp, oval, nval); \
506})
507
508#define __this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
509({ __this_cpu_preempt_check("cmpxchg_double"); \
510 raw_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2); \
511})
512
513#define __this_cpu_sub(pcp, val) __this_cpu_add(pcp, -(typeof(pcp))(val))
514#define __this_cpu_inc(pcp) __this_cpu_add(pcp, 1)
515#define __this_cpu_dec(pcp) __this_cpu_sub(pcp, 1)
Tejun Heoa32f8d82014-06-17 19:12:39 -0400516#define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val))
517#define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1)
518#define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1)
519
Tejun Heoa32f8d82014-06-17 19:12:39 -0400520/*
Tejun Heo83cb8552015-06-26 17:21:28 -0400521 * Operations with implied preemption/interrupt protection. These
522 * operations can be used without worrying about preemption or interrupt.
Tejun Heoa32f8d82014-06-17 19:12:39 -0400523 */
Tejun Heoeba11782014-06-17 19:12:40 -0400524#define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, pcp)
525#define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, pcp, val)
526#define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, pcp, val)
527#define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, pcp, val)
528#define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, pcp, val)
529#define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val)
530#define this_cpu_xchg(pcp, nval) __pcpu_size_call_return2(this_cpu_xchg_, pcp, nval)
531#define this_cpu_cmpxchg(pcp, oval, nval) \
532 __pcpu_size_call_return2(this_cpu_cmpxchg_, pcp, oval, nval)
533#define this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
534 __pcpu_double_call_return_bool(this_cpu_cmpxchg_double_, pcp1, pcp2, oval1, oval2, nval1, nval2)
535
536#define this_cpu_sub(pcp, val) this_cpu_add(pcp, -(typeof(pcp))(val))
537#define this_cpu_inc(pcp) this_cpu_add(pcp, 1)
538#define this_cpu_dec(pcp) this_cpu_sub(pcp, 1)
Tejun Heoa32f8d82014-06-17 19:12:39 -0400539#define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val))
540#define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1)
541#define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1)
Tejun Heoa32f8d82014-06-17 19:12:39 -0400542
Tejun Heo62fde542014-06-17 19:12:34 -0400543#endif /* __ASSEMBLY__ */
David Howells5028eaa2009-04-21 23:00:29 +0100544#endif /* _LINUX_PERCPU_DEFS_H */