blob: 4e4d2afcc0c78752f2fbeb949e2ad9171a776ad2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_PERCPU_H
2#define __LINUX_PERCPU_H
Martin Peschke7ff6f082006-09-25 23:31:21 -07003
Sasha Levin309381fea2014-01-23 15:52:54 -08004#include <linux/mmdebug.h>
Robert P. J. Day0a3021f2007-07-15 23:39:57 -07005#include <linux/preempt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/smp.h>
Martin Peschke7ff6f082006-09-25 23:31:21 -07007#include <linux/cpumask.h>
Tejun Heo6a242902009-03-06 14:33:58 +09008#include <linux/pfn.h>
Tejun Heode380b52010-03-24 17:06:43 +09009#include <linux/init.h>
Martin Peschke7ff6f082006-09-25 23:31:21 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/percpu.h>
12
Tejun Heo6a242902009-03-06 14:33:58 +090013/* enough to cover all DEFINE_PER_CPUs in modules */
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020014#ifdef CONFIG_MODULES
Tejun Heo6a242902009-03-06 14:33:58 +090015#define PERCPU_MODULE_RESERVE (8 << 10)
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020016#else
Tejun Heo6a242902009-03-06 14:33:58 +090017#define PERCPU_MODULE_RESERVE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#endif
19
Tejun Heo6a242902009-03-06 14:33:58 +090020#ifndef PERCPU_ENOUGH_ROOM
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020021#define PERCPU_ENOUGH_ROOM \
Tejun Heo6a242902009-03-06 14:33:58 +090022 (ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES) + \
23 PERCPU_MODULE_RESERVE)
24#endif
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020025
Jan Blunck632bbfe2006-09-25 23:30:53 -070026/*
27 * Must be an lvalue. Since @var must be a simple identifier,
28 * we force a syntax error here if it isn't.
29 */
30#define get_cpu_var(var) (*({ \
Jan Blunck632bbfe2006-09-25 23:30:53 -070031 preempt_disable(); \
32 &__get_cpu_var(var); }))
Tejun Heof7b64fe2009-10-29 22:34:15 +090033
Rusty Russelle0fdb0e2009-10-29 22:34:15 +090034/*
35 * The weird & is necessary because sparse considers (void)(var) to be
36 * a direct dereference of percpu variable (var).
37 */
Tejun Heof7b64fe2009-10-29 22:34:15 +090038#define put_cpu_var(var) do { \
Rusty Russelle0fdb0e2009-10-29 22:34:15 +090039 (void)&(var); \
Tejun Heof7b64fe2009-10-29 22:34:15 +090040 preempt_enable(); \
41} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Peter Zijlstra8b8e2ec2010-09-16 19:21:28 +020043#define get_cpu_ptr(var) ({ \
44 preempt_disable(); \
45 this_cpu_ptr(var); })
46
47#define put_cpu_ptr(var) do { \
48 (void)(var); \
49 preempt_enable(); \
50} while (0)
51
Tejun Heo8d408b42009-02-24 11:57:21 +090052/* minimum unit size, also is the maximum supported allocation size */
Tejun Heo6abad5a2010-09-03 18:22:47 +020053#define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
Tejun Heo8d408b42009-02-24 11:57:21 +090054
55/*
Tejun Heo099a19d2010-06-27 18:50:00 +020056 * Percpu allocator can serve percpu allocations before slab is
57 * initialized which allows slab to depend on the percpu allocator.
58 * The following two parameters decide how much resource to
59 * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or
60 * larger than PERCPU_DYNAMIC_EARLY_SIZE.
61 */
62#define PERCPU_DYNAMIC_EARLY_SLOTS 128
63#define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
64
65/*
Tejun Heo8d408b42009-02-24 11:57:21 +090066 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
Tejun Heo6b19b0c2009-03-06 14:33:59 +090067 * back on the first chunk for dynamic percpu allocation if arch is
68 * manually allocating and mapping it for faster access (as a part of
69 * large page mapping for example).
Tejun Heo8d408b42009-02-24 11:57:21 +090070 *
Tejun Heo6b19b0c2009-03-06 14:33:59 +090071 * The following values give between one and two pages of free space
72 * after typical minimal boot (2-way SMP, single disk and NIC) with
73 * both defconfig and a distro config on x86_64 and 32. More
74 * intelligent way to determine this would be nice.
Tejun Heo8d408b42009-02-24 11:57:21 +090075 */
Tejun Heo6b19b0c2009-03-06 14:33:59 +090076#if BITS_PER_LONG > 32
77#define PERCPU_DYNAMIC_RESERVE (20 << 10)
78#else
79#define PERCPU_DYNAMIC_RESERVE (12 << 10)
80#endif
Tejun Heo8d408b42009-02-24 11:57:21 +090081
Tejun Heofbf59bc2009-02-20 16:29:08 +090082extern void *pcpu_base_addr;
Tejun Heofb435d52009-08-14 15:00:51 +090083extern const unsigned long *pcpu_unit_offsets;
Tejun Heofbf59bc2009-02-20 16:29:08 +090084
Tejun Heofd1e8a12009-08-14 15:00:51 +090085struct pcpu_group_info {
86 int nr_units; /* aligned # of units */
87 unsigned long base_offset; /* base address offset */
88 unsigned int *cpu_map; /* unit->cpu map, empty
89 * entries contain NR_CPUS */
90};
91
92struct pcpu_alloc_info {
93 size_t static_size;
94 size_t reserved_size;
95 size_t dyn_size;
96 size_t unit_size;
97 size_t atom_size;
98 size_t alloc_size;
99 size_t __ai_size; /* internal, don't use */
100 int nr_groups; /* 0 if grouping unnecessary */
101 struct pcpu_group_info groups[];
102};
103
Tejun Heof58dc012009-08-14 15:00:50 +0900104enum pcpu_fc {
105 PCPU_FC_AUTO,
106 PCPU_FC_EMBED,
107 PCPU_FC_PAGE,
Tejun Heof58dc012009-08-14 15:00:50 +0900108
109 PCPU_FC_NR,
110};
Andi Kleen17f36092012-10-04 17:12:07 -0700111extern const char * const pcpu_fc_names[PCPU_FC_NR];
Tejun Heof58dc012009-08-14 15:00:50 +0900112
113extern enum pcpu_fc pcpu_chosen_fc;
114
Tejun Heo3cbc8562009-08-14 15:00:50 +0900115typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
116 size_t align);
Tejun Heod4b95f82009-07-04 08:10:59 +0900117typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
118typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
Tejun Heoa530b792009-07-04 08:11:00 +0900119typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
Tejun Heofbf59bc2009-02-20 16:29:08 +0900120
Tejun Heofd1e8a12009-08-14 15:00:51 +0900121extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
122 int nr_units);
123extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
Tejun Heo033e48f2009-08-14 15:00:51 +0900124
Tejun Heofb435d52009-08-14 15:00:51 +0900125extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
126 void *base_addr);
Tejun Heo8d408b42009-02-24 11:57:21 +0900127
Tejun Heo08fc4582009-08-14 15:00:49 +0900128#ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
Tejun Heo4ba6ce22010-06-27 18:49:59 +0200129extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
Tejun Heoc8826dd2009-08-14 15:00:52 +0900130 size_t atom_size,
131 pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
132 pcpu_fc_alloc_fn_t alloc_fn,
133 pcpu_fc_free_fn_t free_fn);
Tejun Heo08fc4582009-08-14 15:00:49 +0900134#endif
Tejun Heo66c3a752009-03-10 16:27:48 +0900135
Tejun Heo08fc4582009-08-14 15:00:49 +0900136#ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
Tejun Heofb435d52009-08-14 15:00:51 +0900137extern int __init pcpu_page_first_chunk(size_t reserved_size,
Tejun Heod4b95f82009-07-04 08:10:59 +0900138 pcpu_fc_alloc_fn_t alloc_fn,
139 pcpu_fc_free_fn_t free_fn,
140 pcpu_fc_populate_pte_fn_t populate_pte_fn);
Tejun Heo08fc4582009-08-14 15:00:49 +0900141#endif
Tejun Heod4b95f82009-07-04 08:10:59 +0900142
Tejun Heofbf59bc2009-02-20 16:29:08 +0900143/*
144 * Use this to get to a cpu's version of the per-cpu object
145 * dynamically allocated. Non-atomic access to the current CPU's
146 * version should probably be combined with get_cpu()/put_cpu().
147 */
Tejun Heobbddff02010-09-03 18:22:48 +0200148#ifdef CONFIG_SMP
Tejun Heofbf59bc2009-02-20 16:29:08 +0900149#define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu)))
Tejun Heobbddff02010-09-03 18:22:48 +0200150#else
151#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR((ptr)); })
152#endif
Tejun Heofbf59bc2009-02-20 16:29:08 +0900153
Rusty Russelle0fdb0e2009-10-29 22:34:15 +0900154extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
Tejun Heo10fad5e2010-03-10 18:57:54 +0900155extern bool is_kernel_percpu_address(unsigned long addr);
Tejun Heof2a82052009-02-20 16:29:08 +0900156
Tejun Heobbddff02010-09-03 18:22:48 +0200157#if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
Tejun Heoe74e3962009-03-30 19:07:44 +0900158extern void __init setup_per_cpu_areas(void);
159#endif
Tejun Heo099a19d2010-06-27 18:50:00 +0200160extern void __init percpu_init_late(void);
Tejun Heoe74e3962009-03-30 19:07:44 +0900161
Tejun Heode380b52010-03-24 17:06:43 +0900162extern void __percpu *__alloc_percpu(size_t size, size_t align);
163extern void free_percpu(void __percpu *__pdata);
164extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
165
Tejun Heo64ef2912009-10-29 22:34:12 +0900166#define alloc_percpu(type) \
Rusty Russelle0fdb0e2009-10-29 22:34:15 +0900167 (typeof(type) __percpu *)__alloc_percpu(sizeof(type), __alignof__(type))
Tejun Heof2a82052009-02-20 16:29:08 +0900168
Tejun Heo066123a2009-04-10 12:02:40 -0700169/*
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900170 * Branching function to split up a function into a set of functions that
171 * are called for different scalar sizes of the objects handled.
172 */
173
174extern void __bad_size_call_parameter(void);
175
Tejun Heo0f5e4812009-10-29 22:34:12 +0900176#define __pcpu_size_call_return(stem, variable) \
177({ typeof(variable) pscr_ret__; \
Tejun Heo545695f2009-10-29 22:34:15 +0900178 __verify_pcpu_ptr(&(variable)); \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900179 switch(sizeof(variable)) { \
Tejun Heo0f5e4812009-10-29 22:34:12 +0900180 case 1: pscr_ret__ = stem##1(variable);break; \
181 case 2: pscr_ret__ = stem##2(variable);break; \
182 case 4: pscr_ret__ = stem##4(variable);break; \
183 case 8: pscr_ret__ = stem##8(variable);break; \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900184 default: \
185 __bad_size_call_parameter();break; \
186 } \
Tejun Heo0f5e4812009-10-29 22:34:12 +0900187 pscr_ret__; \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900188})
189
Christoph Lametera663fff2010-12-06 11:39:59 -0600190#define __pcpu_size_call_return2(stem, variable, ...) \
191({ \
192 typeof(variable) pscr2_ret__; \
193 __verify_pcpu_ptr(&(variable)); \
194 switch(sizeof(variable)) { \
195 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
196 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
197 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
198 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
199 default: \
200 __bad_size_call_parameter(); break; \
201 } \
202 pscr2_ret__; \
203})
204
Christoph Lameter7c3343392011-02-28 11:02:24 +0100205/*
206 * Special handling for cmpxchg_double. cmpxchg_double is passed two
207 * percpu variables. The first has to be aligned to a double word
208 * boundary and the second has to follow directly thereafter.
Chris Metcalfd4d84fe2011-06-02 10:19:41 -0400209 * We enforce this on all architectures even if they don't support
210 * a double cmpxchg instruction, since it's a cheap requirement, and it
211 * avoids breaking the requirement for architectures with the instruction.
Christoph Lameter7c3343392011-02-28 11:02:24 +0100212 */
213#define __pcpu_double_call_return_bool(stem, pcp1, pcp2, ...) \
214({ \
215 bool pdcrb_ret__; \
216 __verify_pcpu_ptr(&pcp1); \
217 BUILD_BUG_ON(sizeof(pcp1) != sizeof(pcp2)); \
218 VM_BUG_ON((unsigned long)(&pcp1) % (2 * sizeof(pcp1))); \
219 VM_BUG_ON((unsigned long)(&pcp2) != \
220 (unsigned long)(&pcp1) + sizeof(pcp1)); \
221 switch(sizeof(pcp1)) { \
222 case 1: pdcrb_ret__ = stem##1(pcp1, pcp2, __VA_ARGS__); break; \
223 case 2: pdcrb_ret__ = stem##2(pcp1, pcp2, __VA_ARGS__); break; \
224 case 4: pdcrb_ret__ = stem##4(pcp1, pcp2, __VA_ARGS__); break; \
225 case 8: pdcrb_ret__ = stem##8(pcp1, pcp2, __VA_ARGS__); break; \
226 default: \
227 __bad_size_call_parameter(); break; \
228 } \
229 pdcrb_ret__; \
230})
231
Tejun Heo0f5e4812009-10-29 22:34:12 +0900232#define __pcpu_size_call(stem, variable, ...) \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900233do { \
Tejun Heo545695f2009-10-29 22:34:15 +0900234 __verify_pcpu_ptr(&(variable)); \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900235 switch(sizeof(variable)) { \
236 case 1: stem##1(variable, __VA_ARGS__);break; \
237 case 2: stem##2(variable, __VA_ARGS__);break; \
238 case 4: stem##4(variable, __VA_ARGS__);break; \
239 case 8: stem##8(variable, __VA_ARGS__);break; \
240 default: \
241 __bad_size_call_parameter();break; \
242 } \
243} while (0)
244
245/*
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700246 * this_cpu operations (C) 2008-2013 Christoph Lameter <cl@linux.com>
247 *
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900248 * Optimized manipulation for memory allocated through the per cpu
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900249 * allocator or for addresses of per cpu variables.
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900250 *
251 * These operation guarantee exclusivity of access for other operations
252 * on the *same* processor. The assumption is that per cpu data is only
253 * accessed by a single processor instance (the current one).
254 *
255 * The first group is used for accesses that must be done in a
256 * preemption safe way since we know that the context is not preempt
257 * safe. Interrupts may occur. If the interrupt modifies the variable
258 * too then RMW actions will not be reliable.
259 *
260 * The arch code can provide optimized functions in two ways:
261 *
262 * 1. Override the function completely. F.e. define this_cpu_add().
263 * The arch must then ensure that the various scalar format passed
264 * are handled correctly.
265 *
266 * 2. Provide functions for certain scalar sizes. F.e. provide
267 * this_cpu_add_2() to provide per cpu atomic operations for 2 byte
268 * sized RMW actions. If arch code does not provide operations for
269 * a scalar size then the fallback in the generic code will be
270 * used.
271 */
272
273#define _this_cpu_generic_read(pcp) \
274({ typeof(pcp) ret__; \
275 preempt_disable(); \
276 ret__ = *this_cpu_ptr(&(pcp)); \
277 preempt_enable(); \
278 ret__; \
279})
280
281#ifndef this_cpu_read
282# ifndef this_cpu_read_1
283# define this_cpu_read_1(pcp) _this_cpu_generic_read(pcp)
284# endif
285# ifndef this_cpu_read_2
286# define this_cpu_read_2(pcp) _this_cpu_generic_read(pcp)
287# endif
288# ifndef this_cpu_read_4
289# define this_cpu_read_4(pcp) _this_cpu_generic_read(pcp)
290# endif
291# ifndef this_cpu_read_8
292# define this_cpu_read_8(pcp) _this_cpu_generic_read(pcp)
293# endif
Tejun Heo0f5e4812009-10-29 22:34:12 +0900294# define this_cpu_read(pcp) __pcpu_size_call_return(this_cpu_read_, (pcp))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900295#endif
296
297#define _this_cpu_generic_to_op(pcp, val, op) \
298do { \
Christoph Lameter933393f2011-12-22 11:58:51 -0600299 unsigned long flags; \
Ming Leie920d592012-02-15 16:54:38 +0800300 raw_local_irq_save(flags); \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700301 *raw_cpu_ptr(&(pcp)) op val; \
Ming Leie920d592012-02-15 16:54:38 +0800302 raw_local_irq_restore(flags); \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900303} while (0)
304
305#ifndef this_cpu_write
306# ifndef this_cpu_write_1
307# define this_cpu_write_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
308# endif
309# ifndef this_cpu_write_2
310# define this_cpu_write_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
311# endif
312# ifndef this_cpu_write_4
313# define this_cpu_write_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
314# endif
315# ifndef this_cpu_write_8
316# define this_cpu_write_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), =)
317# endif
Tejun Heo0f5e4812009-10-29 22:34:12 +0900318# define this_cpu_write(pcp, val) __pcpu_size_call(this_cpu_write_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900319#endif
320
321#ifndef this_cpu_add
322# ifndef this_cpu_add_1
323# define this_cpu_add_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
324# endif
325# ifndef this_cpu_add_2
326# define this_cpu_add_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
327# endif
328# ifndef this_cpu_add_4
329# define this_cpu_add_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
330# endif
331# ifndef this_cpu_add_8
332# define this_cpu_add_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), +=)
333# endif
Tejun Heo0f5e4812009-10-29 22:34:12 +0900334# define this_cpu_add(pcp, val) __pcpu_size_call(this_cpu_add_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900335#endif
336
337#ifndef this_cpu_sub
Greg Thelenbd09d9a2013-10-30 13:56:20 -0700338# define this_cpu_sub(pcp, val) this_cpu_add((pcp), -(typeof(pcp))(val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900339#endif
340
341#ifndef this_cpu_inc
342# define this_cpu_inc(pcp) this_cpu_add((pcp), 1)
343#endif
344
345#ifndef this_cpu_dec
346# define this_cpu_dec(pcp) this_cpu_sub((pcp), 1)
347#endif
348
349#ifndef this_cpu_and
350# ifndef this_cpu_and_1
351# define this_cpu_and_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
352# endif
353# ifndef this_cpu_and_2
354# define this_cpu_and_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
355# endif
356# ifndef this_cpu_and_4
357# define this_cpu_and_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
358# endif
359# ifndef this_cpu_and_8
360# define this_cpu_and_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), &=)
361# endif
Tejun Heo0f5e4812009-10-29 22:34:12 +0900362# define this_cpu_and(pcp, val) __pcpu_size_call(this_cpu_and_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900363#endif
364
365#ifndef this_cpu_or
366# ifndef this_cpu_or_1
367# define this_cpu_or_1(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
368# endif
369# ifndef this_cpu_or_2
370# define this_cpu_or_2(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
371# endif
372# ifndef this_cpu_or_4
373# define this_cpu_or_4(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
374# endif
375# ifndef this_cpu_or_8
376# define this_cpu_or_8(pcp, val) _this_cpu_generic_to_op((pcp), (val), |=)
377# endif
Tejun Heo0f5e4812009-10-29 22:34:12 +0900378# define this_cpu_or(pcp, val) __pcpu_size_call(this_cpu_or_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900379#endif
380
Tejun Heo40304772010-12-17 15:47:04 +0100381#define _this_cpu_generic_add_return(pcp, val) \
382({ \
383 typeof(pcp) ret__; \
Christoph Lameter933393f2011-12-22 11:58:51 -0600384 unsigned long flags; \
Ming Leie920d592012-02-15 16:54:38 +0800385 raw_local_irq_save(flags); \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700386 raw_cpu_add(pcp, val); \
387 ret__ = raw_cpu_read(pcp); \
Ming Leie920d592012-02-15 16:54:38 +0800388 raw_local_irq_restore(flags); \
Tejun Heo40304772010-12-17 15:47:04 +0100389 ret__; \
390})
391
392#ifndef this_cpu_add_return
393# ifndef this_cpu_add_return_1
394# define this_cpu_add_return_1(pcp, val) _this_cpu_generic_add_return(pcp, val)
395# endif
396# ifndef this_cpu_add_return_2
397# define this_cpu_add_return_2(pcp, val) _this_cpu_generic_add_return(pcp, val)
398# endif
399# ifndef this_cpu_add_return_4
400# define this_cpu_add_return_4(pcp, val) _this_cpu_generic_add_return(pcp, val)
401# endif
402# ifndef this_cpu_add_return_8
403# define this_cpu_add_return_8(pcp, val) _this_cpu_generic_add_return(pcp, val)
404# endif
405# define this_cpu_add_return(pcp, val) __pcpu_size_call_return2(this_cpu_add_return_, pcp, val)
406#endif
407
Greg Thelenbd09d9a2013-10-30 13:56:20 -0700408#define this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(typeof(pcp))(val))
Tejun Heo40304772010-12-17 15:47:04 +0100409#define this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1)
410#define this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1)
411
Christoph Lameter2b712442010-12-18 15:54:04 +0100412#define _this_cpu_generic_xchg(pcp, nval) \
413({ typeof(pcp) ret__; \
Christoph Lameter933393f2011-12-22 11:58:51 -0600414 unsigned long flags; \
Ming Leie920d592012-02-15 16:54:38 +0800415 raw_local_irq_save(flags); \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700416 ret__ = raw_cpu_read(pcp); \
417 raw_cpu_write(pcp, nval); \
Ming Leie920d592012-02-15 16:54:38 +0800418 raw_local_irq_restore(flags); \
Christoph Lameter2b712442010-12-18 15:54:04 +0100419 ret__; \
420})
421
422#ifndef this_cpu_xchg
423# ifndef this_cpu_xchg_1
424# define this_cpu_xchg_1(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
425# endif
426# ifndef this_cpu_xchg_2
427# define this_cpu_xchg_2(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
428# endif
429# ifndef this_cpu_xchg_4
430# define this_cpu_xchg_4(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
431# endif
432# ifndef this_cpu_xchg_8
433# define this_cpu_xchg_8(pcp, nval) _this_cpu_generic_xchg(pcp, nval)
434# endif
435# define this_cpu_xchg(pcp, nval) \
436 __pcpu_size_call_return2(this_cpu_xchg_, (pcp), nval)
437#endif
438
439#define _this_cpu_generic_cmpxchg(pcp, oval, nval) \
Christoph Lameter933393f2011-12-22 11:58:51 -0600440({ \
441 typeof(pcp) ret__; \
442 unsigned long flags; \
Ming Leie920d592012-02-15 16:54:38 +0800443 raw_local_irq_save(flags); \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700444 ret__ = raw_cpu_read(pcp); \
Christoph Lameter2b712442010-12-18 15:54:04 +0100445 if (ret__ == (oval)) \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700446 raw_cpu_write(pcp, nval); \
Ming Leie920d592012-02-15 16:54:38 +0800447 raw_local_irq_restore(flags); \
Christoph Lameter2b712442010-12-18 15:54:04 +0100448 ret__; \
449})
450
451#ifndef this_cpu_cmpxchg
452# ifndef this_cpu_cmpxchg_1
453# define this_cpu_cmpxchg_1(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
454# endif
455# ifndef this_cpu_cmpxchg_2
456# define this_cpu_cmpxchg_2(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
457# endif
458# ifndef this_cpu_cmpxchg_4
459# define this_cpu_cmpxchg_4(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
460# endif
461# ifndef this_cpu_cmpxchg_8
462# define this_cpu_cmpxchg_8(pcp, oval, nval) _this_cpu_generic_cmpxchg(pcp, oval, nval)
463# endif
464# define this_cpu_cmpxchg(pcp, oval, nval) \
465 __pcpu_size_call_return2(this_cpu_cmpxchg_, pcp, oval, nval)
466#endif
467
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900468/*
Christoph Lameter7c3343392011-02-28 11:02:24 +0100469 * cmpxchg_double replaces two adjacent scalars at once. The first
470 * two parameters are per cpu variables which have to be of the same
471 * size. A truth value is returned to indicate success or failure
472 * (since a double register result is difficult to handle). There is
473 * very limited hardware support for these operations, so only certain
474 * sizes may work.
475 */
476#define _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
477({ \
478 int ret__; \
Christoph Lameter933393f2011-12-22 11:58:51 -0600479 unsigned long flags; \
Ming Leie920d592012-02-15 16:54:38 +0800480 raw_local_irq_save(flags); \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700481 ret__ = raw_cpu_generic_cmpxchg_double(pcp1, pcp2, \
Christoph Lameter7c3343392011-02-28 11:02:24 +0100482 oval1, oval2, nval1, nval2); \
Ming Leie920d592012-02-15 16:54:38 +0800483 raw_local_irq_restore(flags); \
Christoph Lameter7c3343392011-02-28 11:02:24 +0100484 ret__; \
485})
486
487#ifndef this_cpu_cmpxchg_double
488# ifndef this_cpu_cmpxchg_double_1
489# define this_cpu_cmpxchg_double_1(pcp1, pcp2, oval1, oval2, nval1, nval2) \
490 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
491# endif
492# ifndef this_cpu_cmpxchg_double_2
493# define this_cpu_cmpxchg_double_2(pcp1, pcp2, oval1, oval2, nval1, nval2) \
494 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
495# endif
496# ifndef this_cpu_cmpxchg_double_4
497# define this_cpu_cmpxchg_double_4(pcp1, pcp2, oval1, oval2, nval1, nval2) \
498 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
499# endif
500# ifndef this_cpu_cmpxchg_double_8
501# define this_cpu_cmpxchg_double_8(pcp1, pcp2, oval1, oval2, nval1, nval2) \
502 _this_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
503# endif
504# define this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
505 __pcpu_double_call_return_bool(this_cpu_cmpxchg_double_, (pcp1), (pcp2), (oval1), (oval2), (nval1), (nval2))
506#endif
507
508/*
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700509 * Generic percpu operations for contexts where we do not want to do
510 * any checks for preemptiosn.
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900511 *
512 * If there is no other protection through preempt disable and/or
513 * disabling interupts then one of these RMW operations can show unexpected
514 * behavior because the execution thread was rescheduled on another processor
515 * or an interrupt occurred and the same percpu variable was modified from
516 * the interrupt context.
517 */
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700518#ifndef raw_cpu_read
519# ifndef raw_cpu_read_1
520# define raw_cpu_read_1(pcp) (*raw_cpu_ptr(&(pcp)))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900521# endif
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700522# ifndef raw_cpu_read_2
523# define raw_cpu_read_2(pcp) (*raw_cpu_ptr(&(pcp)))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900524# endif
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700525# ifndef raw_cpu_read_4
526# define raw_cpu_read_4(pcp) (*raw_cpu_ptr(&(pcp)))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900527# endif
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700528# ifndef raw_cpu_read_8
529# define raw_cpu_read_8(pcp) (*raw_cpu_ptr(&(pcp)))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900530# endif
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700531# define raw_cpu_read(pcp) __pcpu_size_call_return(raw_cpu_read_, (pcp))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900532#endif
533
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700534#define raw_cpu_generic_to_op(pcp, val, op) \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900535do { \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700536 *raw_cpu_ptr(&(pcp)) op val; \
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900537} while (0)
538
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700539
540#ifndef raw_cpu_write
541# ifndef raw_cpu_write_1
542# define raw_cpu_write_1(pcp, val) raw_cpu_generic_to_op((pcp), (val), =)
543# endif
544# ifndef raw_cpu_write_2
545# define raw_cpu_write_2(pcp, val) raw_cpu_generic_to_op((pcp), (val), =)
546# endif
547# ifndef raw_cpu_write_4
548# define raw_cpu_write_4(pcp, val) raw_cpu_generic_to_op((pcp), (val), =)
549# endif
550# ifndef raw_cpu_write_8
551# define raw_cpu_write_8(pcp, val) raw_cpu_generic_to_op((pcp), (val), =)
552# endif
553# define raw_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, (pcp), (val))
554#endif
555
556#ifndef raw_cpu_add
557# ifndef raw_cpu_add_1
558# define raw_cpu_add_1(pcp, val) raw_cpu_generic_to_op((pcp), (val), +=)
559# endif
560# ifndef raw_cpu_add_2
561# define raw_cpu_add_2(pcp, val) raw_cpu_generic_to_op((pcp), (val), +=)
562# endif
563# ifndef raw_cpu_add_4
564# define raw_cpu_add_4(pcp, val) raw_cpu_generic_to_op((pcp), (val), +=)
565# endif
566# ifndef raw_cpu_add_8
567# define raw_cpu_add_8(pcp, val) raw_cpu_generic_to_op((pcp), (val), +=)
568# endif
569# define raw_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, (pcp), (val))
570#endif
571
572#ifndef raw_cpu_sub
573# define raw_cpu_sub(pcp, val) raw_cpu_add((pcp), -(val))
574#endif
575
576#ifndef raw_cpu_inc
577# define raw_cpu_inc(pcp) raw_cpu_add((pcp), 1)
578#endif
579
580#ifndef raw_cpu_dec
581# define raw_cpu_dec(pcp) raw_cpu_sub((pcp), 1)
582#endif
583
584#ifndef raw_cpu_and
585# ifndef raw_cpu_and_1
586# define raw_cpu_and_1(pcp, val) raw_cpu_generic_to_op((pcp), (val), &=)
587# endif
588# ifndef raw_cpu_and_2
589# define raw_cpu_and_2(pcp, val) raw_cpu_generic_to_op((pcp), (val), &=)
590# endif
591# ifndef raw_cpu_and_4
592# define raw_cpu_and_4(pcp, val) raw_cpu_generic_to_op((pcp), (val), &=)
593# endif
594# ifndef raw_cpu_and_8
595# define raw_cpu_and_8(pcp, val) raw_cpu_generic_to_op((pcp), (val), &=)
596# endif
597# define raw_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, (pcp), (val))
598#endif
599
600#ifndef raw_cpu_or
601# ifndef raw_cpu_or_1
602# define raw_cpu_or_1(pcp, val) raw_cpu_generic_to_op((pcp), (val), |=)
603# endif
604# ifndef raw_cpu_or_2
605# define raw_cpu_or_2(pcp, val) raw_cpu_generic_to_op((pcp), (val), |=)
606# endif
607# ifndef raw_cpu_or_4
608# define raw_cpu_or_4(pcp, val) raw_cpu_generic_to_op((pcp), (val), |=)
609# endif
610# ifndef raw_cpu_or_8
611# define raw_cpu_or_8(pcp, val) raw_cpu_generic_to_op((pcp), (val), |=)
612# endif
613# define raw_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, (pcp), (val))
614#endif
615
616#define raw_cpu_generic_add_return(pcp, val) \
617({ \
618 raw_cpu_add(pcp, val); \
619 raw_cpu_read(pcp); \
620})
621
622#ifndef raw_cpu_add_return
623# ifndef raw_cpu_add_return_1
624# define raw_cpu_add_return_1(pcp, val) raw_cpu_generic_add_return(pcp, val)
625# endif
626# ifndef raw_cpu_add_return_2
627# define raw_cpu_add_return_2(pcp, val) raw_cpu_generic_add_return(pcp, val)
628# endif
629# ifndef raw_cpu_add_return_4
630# define raw_cpu_add_return_4(pcp, val) raw_cpu_generic_add_return(pcp, val)
631# endif
632# ifndef raw_cpu_add_return_8
633# define raw_cpu_add_return_8(pcp, val) raw_cpu_generic_add_return(pcp, val)
634# endif
635# define raw_cpu_add_return(pcp, val) \
636 __pcpu_size_call_return2(raw_add_return_, pcp, val)
637#endif
638
639#define raw_cpu_sub_return(pcp, val) raw_cpu_add_return(pcp, -(typeof(pcp))(val))
640#define raw_cpu_inc_return(pcp) raw_cpu_add_return(pcp, 1)
641#define raw_cpu_dec_return(pcp) raw_cpu_add_return(pcp, -1)
642
643#define raw_cpu_generic_xchg(pcp, nval) \
644({ typeof(pcp) ret__; \
645 ret__ = raw_cpu_read(pcp); \
646 raw_cpu_write(pcp, nval); \
647 ret__; \
648})
649
650#ifndef raw_cpu_xchg
651# ifndef raw_cpu_xchg_1
652# define raw_cpu_xchg_1(pcp, nval) raw_cpu_generic_xchg(pcp, nval)
653# endif
654# ifndef raw_cpu_xchg_2
655# define raw_cpu_xchg_2(pcp, nval) raw_cpu_generic_xchg(pcp, nval)
656# endif
657# ifndef raw_cpu_xchg_4
658# define raw_cpu_xchg_4(pcp, nval) raw_cpu_generic_xchg(pcp, nval)
659# endif
660# ifndef raw_cpu_xchg_8
661# define raw_cpu_xchg_8(pcp, nval) raw_cpu_generic_xchg(pcp, nval)
662# endif
663# define raw_cpu_xchg(pcp, nval) \
664 __pcpu_size_call_return2(raw_cpu_xchg_, (pcp), nval)
665#endif
666
667#define raw_cpu_generic_cmpxchg(pcp, oval, nval) \
668({ \
669 typeof(pcp) ret__; \
670 ret__ = raw_cpu_read(pcp); \
671 if (ret__ == (oval)) \
672 raw_cpu_write(pcp, nval); \
673 ret__; \
674})
675
676#ifndef raw_cpu_cmpxchg
677# ifndef raw_cpu_cmpxchg_1
678# define raw_cpu_cmpxchg_1(pcp, oval, nval) raw_cpu_generic_cmpxchg(pcp, oval, nval)
679# endif
680# ifndef raw_cpu_cmpxchg_2
681# define raw_cpu_cmpxchg_2(pcp, oval, nval) raw_cpu_generic_cmpxchg(pcp, oval, nval)
682# endif
683# ifndef raw_cpu_cmpxchg_4
684# define raw_cpu_cmpxchg_4(pcp, oval, nval) raw_cpu_generic_cmpxchg(pcp, oval, nval)
685# endif
686# ifndef raw_cpu_cmpxchg_8
687# define raw_cpu_cmpxchg_8(pcp, oval, nval) raw_cpu_generic_cmpxchg(pcp, oval, nval)
688# endif
689# define raw_cpu_cmpxchg(pcp, oval, nval) \
690 __pcpu_size_call_return2(raw_cpu_cmpxchg_, pcp, oval, nval)
691#endif
692
693#define raw_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
694({ \
695 int __ret = 0; \
696 if (raw_cpu_read(pcp1) == (oval1) && \
697 raw_cpu_read(pcp2) == (oval2)) { \
698 raw_cpu_write(pcp1, (nval1)); \
699 raw_cpu_write(pcp2, (nval2)); \
700 __ret = 1; \
701 } \
702 (__ret); \
703})
704
705#ifndef raw_cpu_cmpxchg_double
706# ifndef raw_cpu_cmpxchg_double_1
707# define raw_cpu_cmpxchg_double_1(pcp1, pcp2, oval1, oval2, nval1, nval2) \
708 raw_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
709# endif
710# ifndef raw_cpu_cmpxchg_double_2
711# define raw_cpu_cmpxchg_double_2(pcp1, pcp2, oval1, oval2, nval1, nval2) \
712 raw_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
713# endif
714# ifndef raw_cpu_cmpxchg_double_4
715# define raw_cpu_cmpxchg_double_4(pcp1, pcp2, oval1, oval2, nval1, nval2) \
716 raw_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
717# endif
718# ifndef raw_cpu_cmpxchg_double_8
719# define raw_cpu_cmpxchg_double_8(pcp1, pcp2, oval1, oval2, nval1, nval2) \
720 raw_cpu_generic_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2)
721# endif
722# define raw_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
723 __pcpu_double_call_return_bool(raw_cpu_cmpxchg_double_, (pcp1), (pcp2), (oval1), (oval2), (nval1), (nval2))
724#endif
725
726/*
727 * Generic percpu operations for context that are safe from preemption/interrupts.
728 * Checks will be added here soon.
729 */
730#ifndef __this_cpu_read
731# define __this_cpu_read(pcp) __pcpu_size_call_return(raw_cpu_read_, (pcp))
732#endif
733
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900734#ifndef __this_cpu_write
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700735# define __this_cpu_write(pcp, val) __pcpu_size_call(raw_cpu_write_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900736#endif
737
738#ifndef __this_cpu_add
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700739# define __this_cpu_add(pcp, val) __pcpu_size_call(raw_cpu_add_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900740#endif
741
742#ifndef __this_cpu_sub
Greg Thelenbd09d9a2013-10-30 13:56:20 -0700743# define __this_cpu_sub(pcp, val) __this_cpu_add((pcp), -(typeof(pcp))(val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900744#endif
745
746#ifndef __this_cpu_inc
747# define __this_cpu_inc(pcp) __this_cpu_add((pcp), 1)
748#endif
749
750#ifndef __this_cpu_dec
751# define __this_cpu_dec(pcp) __this_cpu_sub((pcp), 1)
752#endif
753
754#ifndef __this_cpu_and
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700755# define __this_cpu_and(pcp, val) __pcpu_size_call(raw_cpu_and_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900756#endif
757
758#ifndef __this_cpu_or
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700759# define __this_cpu_or(pcp, val) __pcpu_size_call(raw_cpu_or_, (pcp), (val))
Christoph Lameter7340a0b2009-10-03 19:48:22 +0900760#endif
761
Christoph Lametera663fff2010-12-06 11:39:59 -0600762#ifndef __this_cpu_add_return
Konstantin Khlebnikov7d96b3e2012-02-19 18:29:11 +0400763# define __this_cpu_add_return(pcp, val) \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700764 __pcpu_size_call_return2(raw_cpu_add_return_, pcp, val)
Christoph Lametera663fff2010-12-06 11:39:59 -0600765#endif
766
Greg Thelenbd09d9a2013-10-30 13:56:20 -0700767#define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(typeof(pcp))(val))
Konstantin Khlebnikovadb79502012-02-29 00:41:12 +0400768#define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1)
769#define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1)
Christoph Lametera663fff2010-12-06 11:39:59 -0600770
Christoph Lameter2b712442010-12-18 15:54:04 +0100771#ifndef __this_cpu_xchg
Christoph Lameter2b712442010-12-18 15:54:04 +0100772# define __this_cpu_xchg(pcp, nval) \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700773 __pcpu_size_call_return2(raw_cpu_xchg_, (pcp), nval)
Christoph Lameter2b712442010-12-18 15:54:04 +0100774#endif
775
Christoph Lameter2b712442010-12-18 15:54:04 +0100776#ifndef __this_cpu_cmpxchg
Christoph Lameter2b712442010-12-18 15:54:04 +0100777# define __this_cpu_cmpxchg(pcp, oval, nval) \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700778 __pcpu_size_call_return2(raw_cpu_cmpxchg_, pcp, oval, nval)
Christoph Lameter2b712442010-12-18 15:54:04 +0100779#endif
780
Christoph Lameter7c3343392011-02-28 11:02:24 +0100781#ifndef __this_cpu_cmpxchg_double
Christoph Lameter7c3343392011-02-28 11:02:24 +0100782# define __this_cpu_cmpxchg_double(pcp1, pcp2, oval1, oval2, nval1, nval2) \
Christoph Lameterb3ca1c12014-04-07 15:39:34 -0700783 __pcpu_double_call_return_bool(raw_cpu_cmpxchg_double_, (pcp1), (pcp2), (oval1), (oval2), (nval1), (nval2))
Christoph Lameter7c3343392011-02-28 11:02:24 +0100784#endif
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786#endif /* __LINUX_PERCPU_H */