blob: fac3337547eb862e268587e082d885e0c01577d8 [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
travis@sgi.com5280e002008-01-30 13:32:52 +010011#ifdef CONFIG_SMP
12#define DEFINE_PER_CPU(type, name) \
13 __attribute__((__section__(".data.percpu"))) \
14 PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
15
Eric Dumazet44c81432008-05-14 16:05:51 -070016#ifdef MODULE
17#define SHARED_ALIGNED_SECTION ".data.percpu"
18#else
19#define SHARED_ALIGNED_SECTION ".data.percpu.shared_aligned"
20#endif
21
travis@sgi.com5280e002008-01-30 13:32:52 +010022#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \
Eric Dumazet44c81432008-05-14 16:05:51 -070023 __attribute__((__section__(SHARED_ALIGNED_SECTION))) \
travis@sgi.com5280e002008-01-30 13:32:52 +010024 PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name \
25 ____cacheline_aligned_in_smp
26#else
27#define DEFINE_PER_CPU(type, name) \
28 PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name
29
30#define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \
31 DEFINE_PER_CPU(type, name)
32#endif
33
34#define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var)
35#define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var)
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */
38#ifndef PERCPU_ENOUGH_ROOM
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020039#ifdef CONFIG_MODULES
40#define PERCPU_MODULE_RESERVE 8192
41#else
42#define PERCPU_MODULE_RESERVE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#endif
44
Jeremy Fitzhardingeb00742d32007-05-02 19:27:11 +020045#define PERCPU_ENOUGH_ROOM \
46 (__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE)
47#endif /* PERCPU_ENOUGH_ROOM */
48
Jan Blunck632bbfe2006-09-25 23:30:53 -070049/*
50 * Must be an lvalue. Since @var must be a simple identifier,
51 * we force a syntax error here if it isn't.
52 */
53#define get_cpu_var(var) (*({ \
Jan Bluncka666ecf2006-10-06 00:43:58 -070054 extern int simple_identifier_##var(void); \
Jan Blunck632bbfe2006-09-25 23:30:53 -070055 preempt_disable(); \
56 &__get_cpu_var(var); }))
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define put_cpu_var(var) preempt_enable()
58
59#ifdef CONFIG_SMP
60
61struct percpu_data {
Eric Dumazetb3242152008-02-06 01:37:01 -080062 void *ptrs[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
Martin Peschke7ff6f082006-09-25 23:31:21 -070065#define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
Martin Peschke7ff6f082006-09-25 23:31:21 -070067 * Use this to get to a cpu's version of the per-cpu object dynamically
68 * allocated. Non-atomic access to the current CPU's version should
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * probably be combined with get_cpu()/put_cpu().
70 */
Martin Peschke7ff6f082006-09-25 23:31:21 -070071#define percpu_ptr(ptr, cpu) \
72({ \
73 struct percpu_data *__p = __percpu_disguise(ptr); \
74 (__typeof__(ptr))__p->ptrs[(cpu)]; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070075})
76
Martin Peschke7ff6f082006-09-25 23:31:21 -070077extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask);
78extern void percpu_free(void *__pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#else /* CONFIG_SMP */
81
Martin Peschke7ff6f082006-09-25 23:31:21 -070082#define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); })
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Al Viro0891a8d2006-09-29 01:58:34 -070084static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask)
Martin Peschke7ff6f082006-09-25 23:31:21 -070085{
86 return kzalloc(size, gfp);
87}
88
89static inline void percpu_free(void *__pdata)
90{
91 kfree(__pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94#endif /* CONFIG_SMP */
95
Martin Peschke7ff6f082006-09-25 23:31:21 -070096#define percpu_alloc_mask(size, gfp, mask) \
97 __percpu_alloc_mask((size), (gfp), &(mask))
98
99#define percpu_alloc(size, gfp) percpu_alloc_mask((size), (gfp), cpu_online_map)
100
101/* (legacy) interface for use without CPU hotplug handling */
102
103#define __alloc_percpu(size) percpu_alloc_mask((size), GFP_KERNEL, \
104 cpu_possible_map)
105#define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type))
106#define free_percpu(ptr) percpu_free((ptr))
107#define per_cpu_ptr(ptr, cpu) percpu_ptr((ptr), (cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#endif /* __LINUX_PERCPU_H */