diff options
author | Anna-Maria Behnsen <anna-maria@linutronix.de> | 2023-12-01 10:26:23 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2023-12-20 16:49:37 +0100 |
commit | cb665db94fc61512c9c94ed1d42af67e7bf6ce01 (patch) | |
tree | cebd242eadda396fbdd1e1ca2dad371d77495e70 /kernel/time/tick-sched.c | |
parent | a89299c40911ee29c6ec4fb66f9c598cd947265b (diff) | |
download | linux-stable-cb665db94fc61512c9c94ed1d42af67e7bf6ce01.tar.gz linux-stable-cb665db94fc61512c9c94ed1d42af67e7bf6ce01.tar.bz2 linux-stable-cb665db94fc61512c9c94ed1d42af67e7bf6ce01.zip |
tick-sched: Fix function names in comments
When referencing functions in comments, it might be helpful to use full
function names (including the prefix) to be able to find it when grepping.
Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Link: https://lore.kernel.org/r/20231201092654.34614-2-anna-maria@linutronix.de
Diffstat (limited to 'kernel/time/tick-sched.c')
-rw-r--r-- | kernel/time/tick-sched.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index be77b021e5d6..ff25fdff6b7c 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@ -920,11 +920,11 @@ static void tick_nohz_stop_tick(struct tick_sched *ts, int cpu) } /* - * nohz_stop_sched_tick() can be called several times before - * nohz_restart_sched_tick() is called. This happens when - * interrupts arrive which do not cause a reschedule. In the - * first call we save the current tick time, so we can restart - * the scheduler tick in nohz_restart_sched_tick(). + * tick_nohz_stop_tick() can be called several times before + * tick_nohz_restart_sched_tick() is called. This happens when + * interrupts arrive which do not cause a reschedule. In the first + * call we save the current tick time, so we can restart the + * scheduler tick in tick_nohz_restart_sched_tick(). */ if (!ts->tick_stopped) { calc_load_nohz_start(); |