Commit 45da2773 authored by Valentin Schneider's avatar Valentin Schneider Committed by Peter Zijlstra

sched/fair: find_idlest_group(): Remove unused sd_flag parameter

The last use of that parameter was removed by commit

  57abff06 ("sched/fair: Rework find_idlest_group()")

Get rid of the parameter.
Signed-off-by: default avatarValentin Schneider <valentin.schneider@arm.com>
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: default avatarDietmar Eggemann <dietmar.eggemann@arm.com>
Reviewed-by: default avatarVincent Guittot <vincent.guittot@linaro.org>
Link: https://lkml.kernel.org/r/20200415210512.805-2-valentin.schneider@arm.com
parent 586b58ca
...@@ -5825,8 +5825,7 @@ static int wake_affine(struct sched_domain *sd, struct task_struct *p, ...@@ -5825,8 +5825,7 @@ static int wake_affine(struct sched_domain *sd, struct task_struct *p,
} }
static struct sched_group * static struct sched_group *
find_idlest_group(struct sched_domain *sd, struct task_struct *p, find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu);
int this_cpu, int sd_flag);
/* /*
* find_idlest_group_cpu - find the idlest CPU among the CPUs in the group. * find_idlest_group_cpu - find the idlest CPU among the CPUs in the group.
...@@ -5909,7 +5908,7 @@ static inline int find_idlest_cpu(struct sched_domain *sd, struct task_struct *p ...@@ -5909,7 +5908,7 @@ static inline int find_idlest_cpu(struct sched_domain *sd, struct task_struct *p
continue; continue;
} }
group = find_idlest_group(sd, p, cpu, sd_flag); group = find_idlest_group(sd, p, cpu);
if (!group) { if (!group) {
sd = sd->child; sd = sd->child;
continue; continue;
...@@ -8681,8 +8680,7 @@ static bool update_pick_idlest(struct sched_group *idlest, ...@@ -8681,8 +8680,7 @@ static bool update_pick_idlest(struct sched_group *idlest,
* Assumes p is allowed on at least one CPU in sd. * Assumes p is allowed on at least one CPU in sd.
*/ */
static struct sched_group * static struct sched_group *
find_idlest_group(struct sched_domain *sd, struct task_struct *p, find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
int this_cpu, int sd_flag)
{ {
struct sched_group *idlest = NULL, *local = NULL, *group = sd->groups; struct sched_group *idlest = NULL, *local = NULL, *group = sd->groups;
struct sg_lb_stats local_sgs, tmp_sgs; struct sg_lb_stats local_sgs, tmp_sgs;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment