percpu.h 4.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2
#ifndef __LINUX_PERCPU_H
#define __LINUX_PERCPU_H
3

4
#include <linux/preempt.h>
L
Linus Torvalds 已提交
5 6
#include <linux/slab.h> /* For kmalloc() */
#include <linux/smp.h>
7
#include <linux/cpumask.h>
T
Tejun Heo 已提交
8
#include <linux/pfn.h>
9

L
Linus Torvalds 已提交
10 11
#include <asm/percpu.h>

12
#ifndef PER_CPU_BASE_SECTION
13
#ifdef CONFIG_SMP
B
Brian Gerst 已提交
14
#define PER_CPU_BASE_SECTION ".data.percpu"
15 16 17 18 19 20
#else
#define PER_CPU_BASE_SECTION ".data"
#endif
#endif

#ifdef CONFIG_SMP
21

22
#ifdef MODULE
B
Brian Gerst 已提交
23
#define PER_CPU_SHARED_ALIGNED_SECTION ""
24
#else
B
Brian Gerst 已提交
25
#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
26
#endif
B
Brian Gerst 已提交
27
#define PER_CPU_FIRST_SECTION ".first"
28

B
Brian Gerst 已提交
29 30 31 32 33 34
#else

#define PER_CPU_SHARED_ALIGNED_SECTION ""
#define PER_CPU_FIRST_SECTION ""

#endif
35

B
Brian Gerst 已提交
36 37
#define DEFINE_PER_CPU_SECTION(type, name, section)			\
	__attribute__((__section__(PER_CPU_BASE_SECTION section)))	\
38
	PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
B
Brian Gerst 已提交
39

40
#define DEFINE_PER_CPU(type, name)					\
B
Brian Gerst 已提交
41
	DEFINE_PER_CPU_SECTION(type, name, "")
42

B
Brian Gerst 已提交
43 44 45
#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name)			\
	DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
	____cacheline_aligned_in_smp
46

B
Brian Gerst 已提交
47 48 49 50 51
#define DEFINE_PER_CPU_PAGE_ALIGNED(type, name)				\
	DEFINE_PER_CPU_SECTION(type, name, ".page_aligned")

#define DEFINE_PER_CPU_FIRST(type, name)				\
	DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION)
52 53 54 55

#define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var)
#define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var)

T
Tejun Heo 已提交
56
/* enough to cover all DEFINE_PER_CPUs in modules */
57
#ifdef CONFIG_MODULES
T
Tejun Heo 已提交
58
#define PERCPU_MODULE_RESERVE		(8 << 10)
59
#else
T
Tejun Heo 已提交
60
#define PERCPU_MODULE_RESERVE		0
L
Linus Torvalds 已提交
61 62
#endif

T
Tejun Heo 已提交
63
#ifndef PERCPU_ENOUGH_ROOM
64
#define PERCPU_ENOUGH_ROOM						\
T
Tejun Heo 已提交
65 66 67
	(ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES) +	\
	 PERCPU_MODULE_RESERVE)
#endif
68

69 70 71 72 73
/*
 * Must be an lvalue. Since @var must be a simple identifier,
 * we force a syntax error here if it isn't.
 */
#define get_cpu_var(var) (*({				\
74
	extern int simple_identifier_##var(void);	\
75 76
	preempt_disable();				\
	&__get_cpu_var(var); }))
L
Linus Torvalds 已提交
77 78 79 80
#define put_cpu_var(var) preempt_enable()

#ifdef CONFIG_SMP

81
#ifdef CONFIG_HAVE_DYNAMIC_PER_CPU_AREA
L
Linus Torvalds 已提交
82

83
/* minimum unit size, also is the maximum supported allocation size */
T
Tejun Heo 已提交
84
#define PCPU_MIN_UNIT_SIZE		PFN_ALIGN(64 << 10)
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100

/*
 * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
 * back on the first chunk if arch is manually allocating and mapping
 * it for faster access (as a part of large page mapping for example).
 * Note that dynamic percpu allocator covers both static and dynamic
 * areas, so these values are bigger than PERCPU_MODULE_RESERVE.
 *
 * On typical configuration with modules, the following values leave
 * about 8k of free space on the first chunk after boot on both x86_32
 * and 64 when module support is enabled.  When module support is
 * disabled, it's much tighter.
 */
#ifndef PERCPU_DYNAMIC_RESERVE
#  if BITS_PER_LONG > 32
#    ifdef CONFIG_MODULES
T
Tejun Heo 已提交
101
#      define PERCPU_DYNAMIC_RESERVE	(24 << 10)
102
#    else
T
Tejun Heo 已提交
103
#      define PERCPU_DYNAMIC_RESERVE	(16 << 10)
104 105 106
#    endif
#  else
#    ifdef CONFIG_MODULES
T
Tejun Heo 已提交
107
#      define PERCPU_DYNAMIC_RESERVE	(16 << 10)
108
#    else
T
Tejun Heo 已提交
109
#      define PERCPU_DYNAMIC_RESERVE	(8 << 10)
110 111 112 113
#    endif
#  endif
#endif	/* PERCPU_DYNAMIC_RESERVE */

114
extern void *pcpu_base_addr;
L
Linus Torvalds 已提交
115

116
typedef struct page * (*pcpu_get_page_fn_t)(unsigned int cpu, int pageno);
117 118
typedef void (*pcpu_populate_pte_fn_t)(unsigned long addr);

119
extern size_t __init pcpu_setup_first_chunk(pcpu_get_page_fn_t get_page_fn,
120 121 122 123
				size_t static_size, size_t reserved_size,
				ssize_t unit_size, ssize_t dyn_size,
				void *base_addr,
				pcpu_populate_pte_fn_t populate_pte_fn);
124

125 126 127 128 129
/*
 * Use this to get to a cpu's version of the per-cpu object
 * dynamically allocated. Non-atomic access to the current CPU's
 * version should probably be combined with get_cpu()/put_cpu().
 */
130 131
#define per_cpu_ptr(ptr, cpu)	SHIFT_PERCPU_PTR((ptr), per_cpu_offset((cpu)))

132 133
extern void *__alloc_reserved_percpu(size_t size, size_t align);

134 135 136 137 138 139 140 141
#else /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */

struct percpu_data {
	void *ptrs[1];
};

#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)

142 143 144 145 146 147
#define per_cpu_ptr(ptr, cpu)						\
({									\
        struct percpu_data *__p = __percpu_disguise(ptr);		\
        (__typeof__(ptr))__p->ptrs[(cpu)];				\
})

148 149
#endif /* CONFIG_HAVE_DYNAMIC_PER_CPU_AREA */

150 151
extern void *__alloc_percpu(size_t size, size_t align);
extern void free_percpu(void *__pdata);
L
Linus Torvalds 已提交
152 153 154

#else /* CONFIG_SMP */

155
#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })
156

157
static inline void *__alloc_percpu(size_t size, size_t align)
158
{
159 160 161 162 163
	/*
	 * Can't easily make larger alignment work with kmalloc.  WARN
	 * on it.  Larger alignment should only be used for module
	 * percpu sections on SMP for which this path isn't used.
	 */
164
	WARN_ON_ONCE(align > SMP_CACHE_BYTES);
I
Ingo Molnar 已提交
165
	return kzalloc(size, GFP_KERNEL);
166 167
}

168
static inline void free_percpu(void *p)
169
{
170
	kfree(p);
L
Linus Torvalds 已提交
171 172 173 174
}

#endif /* CONFIG_SMP */

175 176
#define alloc_percpu(type)	(type *)__alloc_percpu(sizeof(type), \
						       __alignof__(type))
L
Linus Torvalds 已提交
177 178

#endif /* __LINUX_PERCPU_H */