mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 15:18:15 +00:00
sched/fair: Remove unused 'sd' parameter from select_idle_smt()
The 'sd' parameter isn't getting used in select_idle_smt(), drop it. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vincent Guittot <vincent.guittot@linaro.org> Link: http://lkml.kernel.org/r/f91c5e118183e79d4a982e9ac4ce5e47948f6c1b.1549536337.git.viresh.kumar@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
2b9c2a4859
commit
1b5500d734
1 changed files with 3 additions and 3 deletions
|
@ -6117,7 +6117,7 @@ static int select_idle_core(struct task_struct *p, struct sched_domain *sd, int
|
||||||
/*
|
/*
|
||||||
* Scan the local SMT mask for idle CPUs.
|
* Scan the local SMT mask for idle CPUs.
|
||||||
*/
|
*/
|
||||||
static int select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target)
|
static int select_idle_smt(struct task_struct *p, int target)
|
||||||
{
|
{
|
||||||
int cpu;
|
int cpu;
|
||||||
|
|
||||||
|
@ -6141,7 +6141,7 @@ static inline int select_idle_core(struct task_struct *p, struct sched_domain *s
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int select_idle_smt(struct task_struct *p, struct sched_domain *sd, int target)
|
static inline int select_idle_smt(struct task_struct *p, int target)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
@ -6246,7 +6246,7 @@ static int select_idle_sibling(struct task_struct *p, int prev, int target)
|
||||||
if ((unsigned)i < nr_cpumask_bits)
|
if ((unsigned)i < nr_cpumask_bits)
|
||||||
return i;
|
return i;
|
||||||
|
|
||||||
i = select_idle_smt(p, sd, target);
|
i = select_idle_smt(p, target);
|
||||||
if ((unsigned)i < nr_cpumask_bits)
|
if ((unsigned)i < nr_cpumask_bits)
|
||||||
return i;
|
return i;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue