Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_PERCPU_H |
| 2 | #define __LINUX_PERCPU_H |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 3 | |
Robert P. J. Day | 0a3021f | 2007-07-15 23:39:57 -0700 | [diff] [blame] | 4 | #include <linux/preempt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/slab.h> /* For kmalloc() */ |
| 6 | #include <linux/smp.h> |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 7 | #include <linux/cpumask.h> |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <asm/percpu.h> |
| 10 | |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 11 | #ifdef CONFIG_SMP |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 12 | #define PER_CPU_BASE_SECTION ".data.percpu" |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 13 | |
Eric Dumazet | 44c8143 | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 14 | #ifdef MODULE |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 15 | #define PER_CPU_SHARED_ALIGNED_SECTION "" |
Eric Dumazet | 44c8143 | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 16 | #else |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 17 | #define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned" |
Eric Dumazet | 44c8143 | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 18 | #endif |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 19 | #define PER_CPU_FIRST_SECTION ".first" |
| 20 | |
| 21 | #else |
| 22 | |
| 23 | #define PER_CPU_BASE_SECTION ".data" |
| 24 | #define PER_CPU_SHARED_ALIGNED_SECTION "" |
| 25 | #define PER_CPU_FIRST_SECTION "" |
| 26 | |
| 27 | #endif |
| 28 | |
| 29 | #define DEFINE_PER_CPU_SECTION(type, name, section) \ |
| 30 | __attribute__((__section__(PER_CPU_BASE_SECTION section))) \ |
| 31 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name |
| 32 | |
| 33 | #define DEFINE_PER_CPU(type, name) \ |
| 34 | DEFINE_PER_CPU_SECTION(type, name, "") |
Eric Dumazet | 44c8143 | 2008-05-14 16:05:51 -0700 | [diff] [blame] | 35 | |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 36 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 37 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \ |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 38 | ____cacheline_aligned_in_smp |
Eric Dumazet | 63cc8c7 | 2008-05-12 15:44:40 +0200 | [diff] [blame] | 39 | |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 40 | #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ |
| 41 | DEFINE_PER_CPU_SECTION(type, name, ".page_aligned") |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 42 | |
Brian Gerst | 0bd74fa | 2009-01-19 12:21:27 +0900 | [diff] [blame^] | 43 | #define DEFINE_PER_CPU_FIRST(type, name) \ |
| 44 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION) |
travis@sgi.com | 5280e00 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 45 | |
| 46 | #define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var) |
| 47 | #define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var) |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* Enough to cover all DEFINE_PER_CPUs in kernel, including modules. */ |
| 50 | #ifndef PERCPU_ENOUGH_ROOM |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 51 | #ifdef CONFIG_MODULES |
| 52 | #define PERCPU_MODULE_RESERVE 8192 |
| 53 | #else |
| 54 | #define PERCPU_MODULE_RESERVE 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #endif |
| 56 | |
Jeremy Fitzhardinge | b00742d | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 57 | #define PERCPU_ENOUGH_ROOM \ |
| 58 | (__per_cpu_end - __per_cpu_start + PERCPU_MODULE_RESERVE) |
| 59 | #endif /* PERCPU_ENOUGH_ROOM */ |
| 60 | |
Jan Blunck | 632bbfe | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 61 | /* |
| 62 | * Must be an lvalue. Since @var must be a simple identifier, |
| 63 | * we force a syntax error here if it isn't. |
| 64 | */ |
| 65 | #define get_cpu_var(var) (*({ \ |
Jan Blunck | a666ecf | 2006-10-06 00:43:58 -0700 | [diff] [blame] | 66 | extern int simple_identifier_##var(void); \ |
Jan Blunck | 632bbfe | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 67 | preempt_disable(); \ |
| 68 | &__get_cpu_var(var); })) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | #define put_cpu_var(var) preempt_enable() |
| 70 | |
| 71 | #ifdef CONFIG_SMP |
| 72 | |
| 73 | struct percpu_data { |
Eric Dumazet | b324215 | 2008-02-06 01:37:01 -0800 | [diff] [blame] | 74 | void *ptrs[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | }; |
| 76 | |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 77 | #define __percpu_disguise(pdata) (struct percpu_data *)~(unsigned long)(pdata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 79 | * Use this to get to a cpu's version of the per-cpu object dynamically |
| 80 | * allocated. Non-atomic access to the current CPU's version should |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | * probably be combined with get_cpu()/put_cpu(). |
| 82 | */ |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 83 | #define percpu_ptr(ptr, cpu) \ |
| 84 | ({ \ |
| 85 | struct percpu_data *__p = __percpu_disguise(ptr); \ |
| 86 | (__typeof__(ptr))__p->ptrs[(cpu)]; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | }) |
| 88 | |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 89 | extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask); |
| 90 | extern void percpu_free(void *__pdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | #else /* CONFIG_SMP */ |
| 93 | |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 94 | #define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Al Viro | 0891a8d | 2006-09-29 01:58:34 -0700 | [diff] [blame] | 96 | static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask) |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 97 | { |
| 98 | return kzalloc(size, gfp); |
| 99 | } |
| 100 | |
| 101 | static inline void percpu_free(void *__pdata) |
| 102 | { |
| 103 | kfree(__pdata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | #endif /* CONFIG_SMP */ |
| 107 | |
Martin Peschke | 7ff6f08 | 2006-09-25 23:31:21 -0700 | [diff] [blame] | 108 | #define percpu_alloc_mask(size, gfp, mask) \ |
| 109 | __percpu_alloc_mask((size), (gfp), &(mask)) |
| 110 | |
| 111 | #define percpu_alloc(size, gfp) percpu_alloc_mask((size), (gfp), cpu_online_map) |
| 112 | |
| 113 | /* (legacy) interface for use without CPU hotplug handling */ |
| 114 | |
| 115 | #define __alloc_percpu(size) percpu_alloc_mask((size), GFP_KERNEL, \ |
| 116 | cpu_possible_map) |
| 117 | #define alloc_percpu(type) (type *)__alloc_percpu(sizeof(type)) |
| 118 | #define free_percpu(ptr) percpu_free((ptr)) |
| 119 | #define per_cpu_ptr(ptr, cpu) percpu_ptr((ptr), (cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | #endif /* __LINUX_PERCPU_H */ |