Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_PERCPU_H_ |
| 2 | #define _ASM_GENERIC_PERCPU_H_ |
David Howells | 5028eaa | 2009-04-21 23:00:29 +0100 | [diff] [blame] | 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | #include <linux/compiler.h> |
Rusty Russell | ae1ee11 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 5 | #include <linux/threads.h> |
David Howells | 5028eaa | 2009-04-21 23:00:29 +0100 | [diff] [blame] | 6 | #include <linux/percpu-defs.h> |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #ifdef CONFIG_SMP |
| 9 | |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 10 | /* |
| 11 | * per_cpu_offset() is the offset that has to be added to a |
| 12 | * percpu variable to get to the instance for a certain processor. |
| 13 | * |
| 14 | * Most arches use the __per_cpu_offset array for those offsets but |
| 15 | * some arches have their own ways of determining the offset (x86_64, s390). |
| 16 | */ |
| 17 | #ifndef __per_cpu_offset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | extern unsigned long __per_cpu_offset[NR_CPUS]; |
| 19 | |
Ingo Molnar | a875a69 | 2006-07-03 00:24:26 -0700 | [diff] [blame] | 20 | #define per_cpu_offset(x) (__per_cpu_offset[x]) |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 21 | #endif |
Ingo Molnar | a875a69 | 2006-07-03 00:24:26 -0700 | [diff] [blame] | 22 | |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 23 | /* |
| 24 | * Determine the offset for the currently active processor. |
| 25 | * An arch may define __my_cpu_offset to provide a more effective |
| 26 | * means of obtaining the offset to the per cpu variables of the |
| 27 | * current processor. |
| 28 | */ |
| 29 | #ifndef __my_cpu_offset |
| 30 | #define __my_cpu_offset per_cpu_offset(raw_smp_processor_id()) |
Hugh Dickins | 1e83527 | 2008-02-23 19:40:17 +0000 | [diff] [blame] | 31 | #endif |
| 32 | #ifdef CONFIG_DEBUG_PREEMPT |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 33 | #define my_cpu_offset per_cpu_offset(smp_processor_id()) |
| 34 | #else |
| 35 | #define my_cpu_offset __my_cpu_offset |
| 36 | #endif |
| 37 | |
| 38 | /* |
Tejun Heo | 6adc5ca | 2014-06-17 19:12:33 -0400 | [diff] [blame] | 39 | * Add an offset to a pointer but keep the pointer as-is. Use RELOC_HIDE() |
| 40 | * to prevent the compiler from making incorrect assumptions about the |
| 41 | * pointer value. The weird cast keeps both GCC and sparse happy. |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 42 | */ |
Tejun Heo | 545695f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 43 | #define SHIFT_PERCPU_PTR(__p, __offset) ({ \ |
| 44 | __verify_pcpu_ptr((__p)); \ |
| 45 | RELOC_HIDE((typeof(*(__p)) __kernel __force *)(__p), (__offset)); \ |
| 46 | }) |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 47 | |
| 48 | /* |
Mike Travis | dd5af90 | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 49 | * A percpu variable may point to a discarded regions. The following are |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 50 | * established ways to produce a usable pointer from the percpu variable |
| 51 | * offset. |
| 52 | */ |
| 53 | #define per_cpu(var, cpu) \ |
Rusty Russell | dd17c8f | 2009-10-29 22:34:15 +0900 | [diff] [blame] | 54 | (*SHIFT_PERCPU_PTR(&(var), per_cpu_offset(cpu))) |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 55 | |
Tejun Heo | bbc344e | 2014-06-17 19:12:34 -0400 | [diff] [blame^] | 56 | /* |
| 57 | * Arch may define arch_raw_cpu_ptr() to provide more efficient address |
| 58 | * translations for raw_cpu_ptr(). |
| 59 | */ |
| 60 | #ifndef arch_raw_cpu_ptr |
| 61 | #define arch_raw_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, __my_cpu_offset) |
Brian Gerst | db7829c | 2010-09-09 18:17:26 +0200 | [diff] [blame] | 62 | #endif |
Tejun Heo | bbc344e | 2014-06-17 19:12:34 -0400 | [diff] [blame^] | 63 | |
| 64 | #define raw_cpu_ptr(ptr) arch_raw_cpu_ptr(ptr) |
| 65 | |
Brian Gerst | db7829c | 2010-09-09 18:17:26 +0200 | [diff] [blame] | 66 | #ifdef CONFIG_DEBUG_PREEMPT |
| 67 | #define this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, my_cpu_offset) |
| 68 | #else |
Christoph Lameter | b3ca1c1 | 2014-04-07 15:39:34 -0700 | [diff] [blame] | 69 | #define this_cpu_ptr(ptr) raw_cpu_ptr(ptr) |
Brian Gerst | db7829c | 2010-09-09 18:17:26 +0200 | [diff] [blame] | 70 | #endif |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 71 | |
Brian Gerst | 677243d | 2010-09-09 18:17:26 +0200 | [diff] [blame] | 72 | #define __get_cpu_var(var) (*this_cpu_ptr(&(var))) |
Christoph Lameter | b3ca1c1 | 2014-04-07 15:39:34 -0700 | [diff] [blame] | 73 | #define __raw_get_cpu_var(var) (*raw_cpu_ptr(&(var))) |
Brian Gerst | 677243d | 2010-09-09 18:17:26 +0200 | [diff] [blame] | 74 | |
Mike Travis | dd5af90 | 2008-01-30 13:33:32 +0100 | [diff] [blame] | 75 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 76 | extern void setup_per_cpu_areas(void); |
| 77 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #else /* ! SMP */ |
| 80 | |
Namhyung Kim | 18cb2aef | 2010-08-07 03:26:23 +0900 | [diff] [blame] | 81 | #define VERIFY_PERCPU_PTR(__p) ({ \ |
| 82 | __verify_pcpu_ptr((__p)); \ |
| 83 | (typeof(*(__p)) __kernel __force *)(__p); \ |
| 84 | }) |
| 85 | |
| 86 | #define per_cpu(var, cpu) (*((void)(cpu), VERIFY_PERCPU_PTR(&(var)))) |
| 87 | #define __get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var))) |
| 88 | #define __raw_get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var))) |
| 89 | #define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0) |
Christoph Lameter | b3ca1c1 | 2014-04-07 15:39:34 -0700 | [diff] [blame] | 90 | #define raw_cpu_ptr(ptr) this_cpu_ptr(ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | #endif /* SMP */ |
| 93 | |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 94 | #ifndef PER_CPU_BASE_SECTION |
| 95 | #ifdef CONFIG_SMP |
Denys Vlasenko | 3d9a854 | 2010-02-20 01:03:43 +0100 | [diff] [blame] | 96 | #define PER_CPU_BASE_SECTION ".data..percpu" |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 97 | #else |
| 98 | #define PER_CPU_BASE_SECTION ".data" |
| 99 | #endif |
| 100 | #endif |
| 101 | |
| 102 | #ifdef CONFIG_SMP |
| 103 | |
| 104 | #ifdef MODULE |
| 105 | #define PER_CPU_SHARED_ALIGNED_SECTION "" |
Jeremy Fitzhardinge | 53f8245 | 2009-09-03 14:31:44 -0700 | [diff] [blame] | 106 | #define PER_CPU_ALIGNED_SECTION "" |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 107 | #else |
Denys Vlasenko | 3d9a854 | 2010-02-20 01:03:43 +0100 | [diff] [blame] | 108 | #define PER_CPU_SHARED_ALIGNED_SECTION "..shared_aligned" |
| 109 | #define PER_CPU_ALIGNED_SECTION "..shared_aligned" |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 110 | #endif |
Denys Vlasenko | 3d9a854 | 2010-02-20 01:03:43 +0100 | [diff] [blame] | 111 | #define PER_CPU_FIRST_SECTION "..first" |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 112 | |
| 113 | #else |
| 114 | |
| 115 | #define PER_CPU_SHARED_ALIGNED_SECTION "" |
Denys Vlasenko | 3d9a854 | 2010-02-20 01:03:43 +0100 | [diff] [blame] | 116 | #define PER_CPU_ALIGNED_SECTION "..shared_aligned" |
David Howells | 9b8de74 | 2009-04-21 23:00:24 +0100 | [diff] [blame] | 117 | #define PER_CPU_FIRST_SECTION "" |
| 118 | |
| 119 | #endif |
| 120 | |
travis@sgi.com | acdac87 | 2008-01-30 13:32:52 +0100 | [diff] [blame] | 121 | #ifndef PER_CPU_ATTRIBUTES |
| 122 | #define PER_CPU_ATTRIBUTES |
| 123 | #endif |
| 124 | |
Tejun Heo | b01e8dc | 2009-06-30 11:41:18 -0700 | [diff] [blame] | 125 | #ifndef PER_CPU_DEF_ATTRIBUTES |
| 126 | #define PER_CPU_DEF_ATTRIBUTES |
| 127 | #endif |
| 128 | |
Christoph Lameter | b3ca1c1 | 2014-04-07 15:39:34 -0700 | [diff] [blame] | 129 | /* Keep until we have removed all uses of __this_cpu_ptr */ |
| 130 | #define __this_cpu_ptr raw_cpu_ptr |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | #endif /* _ASM_GENERIC_PERCPU_H_ */ |