diff options
Diffstat (limited to 'tools/testing/radix-tree/linux/percpu.h')
-rw-r--r-- | tools/testing/radix-tree/linux/percpu.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/testing/radix-tree/linux/percpu.h b/tools/testing/radix-tree/linux/percpu.h index 5837f1d56f17..3ea01a1a88c2 100644 --- a/tools/testing/radix-tree/linux/percpu.h +++ b/tools/testing/radix-tree/linux/percpu.h | |||
@@ -1,7 +1,10 @@ | |||
1 | 1 | #define DECLARE_PER_CPU(type, val) extern type val | |
2 | #define DEFINE_PER_CPU(type, val) type val | 2 | #define DEFINE_PER_CPU(type, val) type val |
3 | 3 | ||
4 | #define __get_cpu_var(var) var | 4 | #define __get_cpu_var(var) var |
5 | #define this_cpu_ptr(var) var | 5 | #define this_cpu_ptr(var) var |
6 | #define this_cpu_read(var) var | ||
7 | #define this_cpu_xchg(var, val) uatomic_xchg(&var, val) | ||
8 | #define this_cpu_cmpxchg(var, old, new) uatomic_cmpxchg(&var, old, new) | ||
6 | #define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) | 9 | #define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) |
7 | #define per_cpu(var, cpu) (*per_cpu_ptr(&(var), cpu)) | 10 | #define per_cpu(var, cpu) (*per_cpu_ptr(&(var), cpu)) |