percpu: Resolve ambiguities in __get_cpu_var/cpumask_var_t
authorChristoph Lameter <cl@linux.com>
Wed, 27 Aug 2014 00:12:21 +0000 (19:12 -0500)
committerTejun Heo <tj@kernel.org>
Thu, 28 Aug 2014 12:58:57 +0000 (08:58 -0400)
commit4ba2968420fa9d0604b6a6a5c61bfa8d0fa84ae0
treea1051b2a4a23ae8f943f3ae97c0adf6b594e2df0
parent23f66e2d661b4d3226d16e25910a9e9472ce2410
percpu: Resolve ambiguities in __get_cpu_var/cpumask_var_t

__get_cpu_var can paper over differences in the definitions of
cpumask_var_t and either use the address of the cpumask variable
directly or perform a fetch of the address of the struct cpumask
allocated elsewhere. This is important particularly when using per cpu
cpumask_var_t declarations because in one case we have an offset into
a per cpu area to handle and in the other case we need to fetch a
pointer from the offset.

This patch introduces a new macro

this_cpu_cpumask_var_ptr()

that is defined where cpumask_var_t is defined and performs the proper
actions. All use cases where __get_cpu_var is used with cpumask_var_t
are converted to the use of this_cpu_cpumask_var_ptr().

Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
arch/x86/include/asm/perf_event_p4.h
arch/x86/kernel/apic/x2apic_cluster.c
arch/x86/oprofile/op_model_p4.c
include/linux/cpumask.h
kernel/sched/deadline.c
kernel/sched/fair.c
kernel/sched/rt.c