sched/fair: Cleanup task_util and capacity type

[ Upstream commit ef8df9798d ]

task_util and capacity are comparable unsigned long values. There is no
need for an intermidiate implicit signed cast.

Signed-off-by: Vincent Donnefort <vincent.donnefort@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20211207095755.859972-1-vincent.donnefort@arm.com
Stable-dep-of: 48d5e9daa8 ("sched/uclamp: Fix relationship between uclamp and migration margin")
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Vincent Donnefort 2021-12-07 09:57:55 +00:00 коммит произвёл Greg Kroah-Hartman
Родитель 26bffaf678
Коммит 54a766e196
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -4120,7 +4120,8 @@ done:
trace_sched_util_est_se_tp(&p->se); trace_sched_util_est_se_tp(&p->se);
} }
static inline int task_fits_capacity(struct task_struct *p, long capacity) static inline int task_fits_capacity(struct task_struct *p,
unsigned long capacity)
{ {
return fits_capacity(uclamp_task_util(p), capacity); return fits_capacity(uclamp_task_util(p), capacity);
} }
@ -6398,7 +6399,7 @@ select_idle_capacity(struct task_struct *p, struct sched_domain *sd, int target)
return best_cpu; return best_cpu;
} }
static inline bool asym_fits_capacity(int task_util, int cpu) static inline bool asym_fits_capacity(unsigned long task_util, int cpu)
{ {
if (static_branch_unlikely(&sched_asym_cpucapacity)) if (static_branch_unlikely(&sched_asym_cpucapacity))
return fits_capacity(task_util, capacity_of(cpu)); return fits_capacity(task_util, capacity_of(cpu));