percpu.h 3.4 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 8
#include <linux/cpumask.h>

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

11
#ifdef CONFIG_SMP
B
Brian Gerst 已提交
12
#define PER_CPU_BASE_SECTION ".data.percpu"
13

14
#ifdef MODULE
B
Brian Gerst 已提交
15
#define PER_CPU_SHARED_ALIGNED_SECTION ""
16
#else
B
Brian Gerst 已提交
17
#define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned"
18
#endif
B
Brian Gerst 已提交
19
#define PER_CPU_FIRST_SECTION ".first"
20

B
Brian Gerst 已提交
21 22 23 24 25 26 27
#else

#define PER_CPU_BASE_SECTION ".data"
#define PER_CPU_SHARED_ALIGNED_SECTION ""
#define PER_CPU_FIRST_SECTION ""

#endif
28

B
Brian Gerst 已提交
29 30
#define DEFINE_PER_CPU_SECTION(type, name, section)			\
	__attribute__((__section__(PER_CPU_BASE_SECTION section)))	\
31
	PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
B
Brian Gerst 已提交
32

33
#define DEFINE_PER_CPU(type, name)					\
B
Brian Gerst 已提交
34
	DEFINE_PER_CPU_SECTION(type, name, "")
35

B
Brian Gerst 已提交
36 37 38
#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name)			\
	DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \
	____cacheline_aligned_in_smp
39

B
Brian Gerst 已提交
40 41 42 43 44
#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)
45 46 47 48

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

L
Linus Torvalds 已提交
49 50
/* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */
#ifndef PERCPU_ENOUGH_ROOM
51 52 53 54
#ifdef CONFIG_MODULES
#define PERCPU_MODULE_RESERVE	8192
#else
#define PERCPU_MODULE_RESERVE	0
L
Linus Torvalds 已提交
55 56
#endif

57 58 59 60
#define PERCPU_ENOUGH_ROOM						\
	(__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE)
#endif	/* PERCPU_ENOUGH_ROOM */

61 62 63 64 65
/*
 * 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) (*({				\
66
	extern int simple_identifier_##var(void);	\
67 68
	preempt_disable();				\
	&__get_cpu_var(var); }))
L
Linus Torvalds 已提交
69 70 71 72 73
#define put_cpu_var(var) preempt_enable()

#ifdef CONFIG_SMP

struct percpu_data {
74
	void *ptrs[1];
L
Linus Torvalds 已提交
75 76
};

77
#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)
L
Linus Torvalds 已提交
78
/* 
79 80
 * 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
L
Linus Torvalds 已提交
81 82
 * probably be combined with get_cpu()/put_cpu().
 */ 
83 84 85 86
#define percpu_ptr(ptr, cpu)                              \
({                                                        \
        struct percpu_data *__p = __percpu_disguise(ptr); \
        (__typeof__(ptr))__p->ptrs[(cpu)];	          \
L
Linus Torvalds 已提交
87 88
})

89 90
extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask);
extern void percpu_free(void *__pdata);
L
Linus Torvalds 已提交
91 92 93

#else /* CONFIG_SMP */

94 95
#define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })

96
static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask)
97 98 99 100 101 102 103
{
	return kzalloc(size, gfp);
}

static inline void percpu_free(void *__pdata)
{
	kfree(__pdata);
L
Linus Torvalds 已提交
104 105 106 107
}

#endif /* CONFIG_SMP */

108 109 110 111 112 113 114 115 116 117 118 119
#define percpu_alloc_mask(size, gfp, mask) \
	__percpu_alloc_mask((size), (gfp), &(mask))

#define percpu_alloc(size, gfp) percpu_alloc_mask((size), (gfp), cpu_online_map)

/* (legacy) interface for use without CPU hotplug handling */

#define __alloc_percpu(size)	percpu_alloc_mask((size), GFP_KERNEL, \
						  cpu_possible_map)
#define alloc_percpu(type)	(type *)__alloc_percpu(sizeof(type))
#define free_percpu(ptr)	percpu_free((ptr))
#define per_cpu_ptr(ptr, cpu)	percpu_ptr((ptr), (cpu))
L
Linus Torvalds 已提交
120 121

#endif /* __LINUX_PERCPU_H */