Go to the documentation of this file. 1 #ifndef _ASM_GENERIC_PERCPU_H_
2 #define _ASM_GENERIC_PERCPU_H_
4 #include <linux/compiler.h>
17 #ifndef __per_cpu_offset
18 extern unsigned long __per_cpu_offset[
NR_CPUS];
20 #define per_cpu_offset(x) (__per_cpu_offset[x])
29 #ifndef __my_cpu_offset
30 #define __my_cpu_offset per_cpu_offset(raw_smp_processor_id())
32 #ifdef CONFIG_DEBUG_PREEMPT
33 #define my_cpu_offset per_cpu_offset(smp_processor_id())
35 #define my_cpu_offset __my_cpu_offset
43 #ifndef SHIFT_PERCPU_PTR
45 #define SHIFT_PERCPU_PTR(__p, __offset) ({ \
46 __verify_pcpu_ptr((__p)); \
47 RELOC_HIDE((typeof(*(__p)) __kernel __force *)(__p), (__offset)); \
56 #define per_cpu(var, cpu) \
57 (*SHIFT_PERCPU_PTR(&(var), per_cpu_offset(cpu)))
59 #ifndef __this_cpu_ptr
60 #define __this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, __my_cpu_offset)
62 #ifdef CONFIG_DEBUG_PREEMPT
63 #define this_cpu_ptr(ptr) SHIFT_PERCPU_PTR(ptr, my_cpu_offset)
65 #define this_cpu_ptr(ptr) __this_cpu_ptr(ptr)
68 #define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
69 #define __raw_get_cpu_var(var) (*__this_cpu_ptr(&(var)))
71 #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA
77 #define VERIFY_PERCPU_PTR(__p) ({ \
78 __verify_pcpu_ptr((__p)); \
79 (typeof(*(__p)) __kernel __force *)(__p); \
82 #define per_cpu(var, cpu) (*((void)(cpu), VERIFY_PERCPU_PTR(&(var))))
83 #define __get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var)))
84 #define __raw_get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var)))
85 #define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0)
86 #define __this_cpu_ptr(ptr) this_cpu_ptr(ptr)
90 #ifndef PER_CPU_BASE_SECTION
92 #define PER_CPU_BASE_SECTION ".data..percpu"
94 #define PER_CPU_BASE_SECTION ".data"
101 #define PER_CPU_SHARED_ALIGNED_SECTION ""
102 #define PER_CPU_ALIGNED_SECTION ""
104 #define PER_CPU_SHARED_ALIGNED_SECTION "..shared_aligned"
105 #define PER_CPU_ALIGNED_SECTION "..shared_aligned"
107 #define PER_CPU_FIRST_SECTION "..first"
111 #define PER_CPU_SHARED_ALIGNED_SECTION ""
112 #define PER_CPU_ALIGNED_SECTION "..shared_aligned"
113 #define PER_CPU_FIRST_SECTION ""
117 #ifndef PER_CPU_ATTRIBUTES
118 #define PER_CPU_ATTRIBUTES
121 #ifndef PER_CPU_DEF_ATTRIBUTES
122 #define PER_CPU_DEF_ATTRIBUTES