Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c51ec4d authored by Christoph Lameter's avatar Christoph Lameter Committed by Linus Torvalds
Browse files

percpu: remove __get_cpu_var and __raw_get_cpu_var macros



No user is left in the kernel source tree.  Therefore we can drop the
definitions.

This is the final merge of the transition away from __get_cpu_var.  After
this patch the kernel will not build if anyone uses __get_cpu_var.

Signed-off-by: default avatarChristoph Lameter <cl@linux.com>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 37d469e7
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -254,8 +254,6 @@ do { \
#endif	/* CONFIG_SMP */

#define per_cpu(var, cpu)	(*per_cpu_ptr(&(var), cpu))
#define __raw_get_cpu_var(var)	(*raw_cpu_ptr(&(var)))
#define __get_cpu_var(var)	(*this_cpu_ptr(&(var)))

/*
 * Must be an lvalue. Since @var must be a simple identifier,