diff options
author | Zhang Qiao <zhangqiao22@huawei.com> | 2022-06-17 20:11:51 +0200 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2022-06-28 09:08:29 +0200 |
commit | c64b551f6a338eb9724a2f9ef3dddf80ccef2894 (patch) | |
tree | 0ec912c9fb5c5712621ce809f9cce7c86a797396 /kernel/sched/sched.h | |
parent | sched/fair: Remove redundant word " *" (diff) | |
download | linux-c64b551f6a338eb9724a2f9ef3dddf80ccef2894.tar.xz linux-c64b551f6a338eb9724a2f9ef3dddf80ccef2894.zip |
sched: Remove unused function group_first_cpu()
As of commit afe06efdf07c ("sched: Extend scheduler's asym packing")
group_first_cpu() became an unused function, remove it.
Signed-off-by: Zhang Qiao <zhangqiao22@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Valentin Schneider <vschneid@redhat.com>
Link: https://lore.kernel.org/r/20220617181151.29980-3-zhangqiao22@huawei.com
Diffstat (limited to 'kernel/sched/sched.h')
-rw-r--r-- | kernel/sched/sched.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 1e34bb4527fd..02c970501295 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -1810,15 +1810,6 @@ static inline struct cpumask *group_balance_mask(struct sched_group *sg) return to_cpumask(sg->sgc->cpumask); } -/** - * group_first_cpu - Returns the first CPU in the cpumask of a sched_group. - * @group: The group whose first CPU is to be returned. - */ -static inline unsigned int group_first_cpu(struct sched_group *group) -{ - return cpumask_first(sched_group_span(group)); -} - extern int group_balance_cpu(struct sched_group *sg); #ifdef CONFIG_SCHED_DEBUG |