blob: 18080995ff3efda8a5dac47859029fff51363e23 [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
Robert P. J. Day0a3021f2007-07-15 23:39:57 -07004#include <linux/preempt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/slab.h> /* For kmalloc() */
6#include <linux/smp.h>
Martin Peschke7ff6f082006-09-25 23:31:21 -07007#include <linux/cpumask.h>
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/percpu.h>
10
Brian Gerstd3770442009-02-08 09:58:38 -050011#ifndef PER_CPU_BASE_SECTION
travis@sgi.com5280e002008-01-30 13:32:52 +010012#ifdef CONFIG_SMP
Brian Gerst0bd74fa2009-01-19 12:21:27 +090013#define PER_CPU_BASE_SECTION ".data.percpu"
Brian Gerstd3770442009-02-08 09:58:38 -050014#else
15#define PER_CPU_BASE_SECTION ".data"
16#endif
17#endif
18
19#ifdef CONFIG_SMP
travis@sgi.com5280e002008-01-30 13:32:52 +010020
Eric Dumazet44c81432008-05-14 16:05:51 -070021#ifdef MODULE
Brian Gerst0bd74fa2009-01-19 12:21:27 +090022#define PER_CPU_SHARED_ALIGNED_SECTION ""
Eric Dumazet44c81432008-05-14 16:05:51 -070023#else
Brian Gerst0bd74fa2009-01-19 12:21:27 +090024#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
Eric Dumazet44c81432008-05-14 16:05:51 -070025#endif
Brian Gerst0bd74fa2009-01-19 12:21:27 +090026#define PER_CPU_FIRST_SECTION ".first"
27
28#else
29
Brian Gerst0bd74fa2009-01-19 12:21:27 +090030#define PER_CPU_SHARED_ALIGNED_SECTION ""
31#define PER_CPU_FIRST_SECTION ""
32
33#endif
34
35#define DEFINE_PER_CPU_SECTION(type, name, section) \
36 __attribute__((__section__(PER_CPU_BASE_SECTION section))) \
37 PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
38
39#define DEFINE_PER_CPU(type, name) \
40 DEFINE_PER_CPU_SECTION(type, name, "")
Eric Dumazet44c81432008-05-14 16:05:51 -070041
travis@sgi.com5280e002008-01-30 13:32:52 +010042#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \
Brian Gerst0bd74fa2009-01-19 12:21:27 +090043 DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
travis@sgi.com5280e002008-01-30 13:32:52 +010044 ____cacheline_aligned_in_smp
Eric Dumazet63cc8c72008-05-12 15:44:40 +020045
Brian Gerst0bd74fa2009-01-19 12:21:27 +090046#define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \
47 DEFINE_PER_CPU_SECTION(type, name, ".page_aligned")
travis@sgi.com5280e002008-01-30 13:32:52 +010048
Brian Gerst0bd74fa2009-01-19 12:21:27 +090049#define DEFINE_PER_CPU_FIRST(type, name) \
50 DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION)
travis@sgi.com5280e002008-01-30 13:32:52 +010051
52#define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var)
53#define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var)
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */
56#ifndef PERCPU_ENOUGH_ROOM
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020057#ifdef CONFIG_MODULES
58#define PERCPU_MODULE_RESERVE 8192
59#else
60#define PERCPU_MODULE_RESERVE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020063#define PERCPU_ENOUGH_ROOM \
64 (__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE)
65#endif /* PERCPU_ENOUGH_ROOM */
66
Jan Blunck632bbfe2006-09-25 23:30:53 -070067/*
68 * Must be an lvalue. Since @var must be a simple identifier,
69 * we force a syntax error here if it isn't.
70 */
71#define get_cpu_var(var) (*({ \
Jan Bluncka666ecf2006-10-06 00:43:58 -070072 extern int simple_identifier_##var(void); \
Jan Blunck632bbfe2006-09-25 23:30:53 -070073 preempt_disable(); \
74 &__get_cpu_var(var); }))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define put_cpu_var(var) preempt_enable()
76
77#ifdef CONFIG_SMP
78
Tejun Heofbf59bc2009-02-20 16:29:08 +090079#ifdef CONFIG_HAVE_DYNAMIC_PER_CPU_AREA
80
81extern void *pcpu_base_addr;
82
83typedef void (*pcpu_populate_pte_fn_t)(unsigned long addr);
84
85extern size_t __init pcpu_setup_static(pcpu_populate_pte_fn_t populate_pte_fn,
86 struct page **pages, size_t cpu_size);
87/*
88 * Use this to get to a cpu's version of the per-cpu object
89 * dynamically allocated. Non-atomic access to the current CPU's
90 * version should probably be combined with get_cpu()/put_cpu().
91 */
92#define per_cpu_ptr(ptr, cpu) SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu)))
93
94#else /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096struct percpu_data {
Eric Dumazetb3242152008-02-06 01:37:01 -080097 void *ptrs[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
Martin Peschke7ff6f082006-09-25 23:31:21 -0700100#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Rusty Russellb36128c2009-02-20 16:29:08 +0900102#define per_cpu_ptr(ptr, cpu) \
103({ \
104 struct percpu_data *__p = __percpu_disguise(ptr); \
105 (__typeof__(ptr))__p->ptrs[(cpu)]; \
106})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Tejun Heofbf59bc2009-02-20 16:29:08 +0900108#endif /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */
109
Tejun Heof2a82052009-02-20 16:29:08 +0900110extern void *__alloc_percpu(size_t size, size_t align);
111extern void free_percpu(void *__pdata);
112
113#else /* CONFIG_SMP */
114
115#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })
116
117static inline void *__alloc_percpu(size_t size, size_t align)
118{
119 /*
120 * Can't easily make larger alignment work with kmalloc. WARN
121 * on it. Larger alignment should only be used for module
122 * percpu sections on SMP for which this path isn't used.
123 */
124 WARN_ON_ONCE(align > __alignof__(unsigned long long));
125 return kzalloc(size, gfp);
126}
127
128static inline void free_percpu(void *p)
129{
130 kfree(p);
131}
132
133#endif /* CONFIG_SMP */
134
135#define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type), \
136 __alignof__(type))
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif /* __LINUX_PERCPU_H */