aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorChristoph Lameter <cl@linux.com>2014-08-26 20:12:21 -0400
committerTejun Heo <tj@kernel.org>2014-08-28 08:58:57 -0400
commit4ba2968420fa9d0604b6a6a5c61bfa8d0fa84ae0 (patch)
treea1051b2a4a23ae8f943f3ae97c0adf6b594e2df0 /kernel
parent23f66e2d661b4d3226d16e25910a9e9472ce2410 (diff)
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>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched/deadline.c2
-rw-r--r--kernel/sched/fair.c2
-rw-r--r--kernel/sched/rt.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
index 255ce138b652..4a608cfaecbd 100644
--- a/kernel/sched/deadline.c
+++ b/kernel/sched/deadline.c
@@ -1158,7 +1158,7 @@ static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask_dl);
1158static int find_later_rq(struct task_struct *task) 1158static int find_later_rq(struct task_struct *task)
1159{ 1159{
1160 struct sched_domain *sd; 1160 struct sched_domain *sd;
1161 struct cpumask *later_mask = __get_cpu_var(local_cpu_mask_dl); 1161 struct cpumask *later_mask = this_cpu_cpumask_var_ptr(local_cpu_mask_dl);
1162 int this_cpu = smp_processor_id(); 1162 int this_cpu = smp_processor_id();
1163 int best_cpu, cpu = task_cpu(task); 1163 int best_cpu, cpu = task_cpu(task);
1164 1164
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index bfa3c86d0d68..197d659c144c 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -6539,7 +6539,7 @@ static int load_balance(int this_cpu, struct rq *this_rq,
6539 struct sched_group *group; 6539 struct sched_group *group;
6540 struct rq *busiest; 6540 struct rq *busiest;
6541 unsigned long flags; 6541 unsigned long flags;
6542 struct cpumask *cpus = __get_cpu_var(load_balance_mask); 6542 struct cpumask *cpus = this_cpu_cpumask_var_ptr(load_balance_mask);
6543 6543
6544 struct lb_env env = { 6544 struct lb_env env = {
6545 .sd = sd, 6545 .sd = sd,
diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
index 5f6edca4fafd..a4c50fce9b90 100644
--- a/kernel/sched/rt.c
+++ b/kernel/sched/rt.c
@@ -1526,7 +1526,7 @@ static DEFINE_PER_CPU(cpumask_var_t, local_cpu_mask);
1526static int find_lowest_rq(struct task_struct *task) 1526static int find_lowest_rq(struct task_struct *task)
1527{ 1527{
1528 struct sched_domain *sd; 1528 struct sched_domain *sd;
1529 struct cpumask *lowest_mask = __get_cpu_var(local_cpu_mask); 1529 struct cpumask *lowest_mask = this_cpu_cpumask_var_ptr(local_cpu_mask);
1530 int this_cpu = smp_processor_id(); 1530 int this_cpu = smp_processor_id();
1531 int cpu = task_cpu(task); 1531 int cpu = task_cpu(task);
1532 1532