aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorten Rasmussen <morten.rasmussen@arm.com>2012-10-12 15:25:02 +0100
committerViresh Kumar <viresh.kumar@linaro.org>2012-11-05 15:08:51 +0530
commitceb23d19242e4ced89a2e670a4fcb44f5fcf6238 (patch)
treef4fcdddc5471c426c2ea6d37eb3ca9a3ab96ab3f
parent805875aa2dae541aa5f00bf33251eafb643fe6f4 (diff)
sched: Only down migrate low priority tasks if allowed by affinity mask
Adds an extra check intersection of the task affinity mask and the slower hmp_domain cpumask before down migrating low priority tasks. Signed-off-by: Morten Rasmussen <morten.rasmussen@arm.com>
-rw-r--r--kernel/sched/fair.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index e61326042887..cc4882ddec3c 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5667,8 +5667,11 @@ static unsigned int hmp_down_migration(int cpu, struct sched_entity *se)
#ifdef CONFIG_SCHED_HMP_PRIO_FILTER
/* Filter by task priority */
- if (p->prio >= hmp_up_prio)
+ if ((p->prio >= hmp_up_prio) &&
+ cpumask_intersects(&hmp_slower_domain(cpu)->cpus,
+ tsk_cpus_allowed(p))) {
return 1;
+ }
#endif
/* Let the task load settle before doing another down migration */