diff options
author | 2024-12-19 09:58:39 +0100 | |
---|---|---|
committer | 2024-12-20 15:31:16 +0100 | |
commit | ee8118c1f1864eab709fb660d3af8545cf11ae96 (patch) | |
tree | ee43cdd916955c15b4c05400e2500a686d00766c | |
parent | sched/fair: Fix CPU bandwidth limit bypass during CPU hotplug (diff) | |
download | wireguard-linux-ee8118c1f1864eab709fb660d3af8545cf11ae96.tar.xz wireguard-linux-ee8118c1f1864eab709fb660d3af8545cf11ae96.zip |
sched/fair: Update comments after sched_tick() rename.
scheduler_tick() was renamed to sched_tick() in 86dd6c04ef9f2
("sched/balancing: Rename scheduler_tick() => sched_tick()").
Update comments still referring to scheduler_tick.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20241219085839.302378-1-bigeasy@linutronix.de
Diffstat (limited to '')
-rw-r--r-- | kernel/sched/fair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 8f641c9e74a8..ae8095aa4585 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -12868,9 +12868,9 @@ out: /* * This softirq handler is triggered via SCHED_SOFTIRQ from two places: * - * - directly from the local scheduler_tick() for periodic load balancing + * - directly from the local sched_tick() for periodic load balancing * - * - indirectly from a remote scheduler_tick() for NOHZ idle balancing + * - indirectly from a remote sched_tick() for NOHZ idle balancing * through the SMP cross-call nohz_csd_func() */ static __latent_entropy void sched_balance_softirq(void) |