diff options
| author | Zhan Xusheng <zhanxusheng1024@gmail.com> | 2026-03-26 17:22:10 +0300 |
|---|---|---|
| committer | Thomas Gleixner <tglx@kernel.org> | 2026-03-28 16:18:13 +0300 |
| commit | e9fb60a780fe7eae6a5d73e647208b2a7d3e3b54 (patch) | |
| tree | 1232549d25ba0a92f3c45ff88a4ea478f2e6bd3e | |
| parent | 551e49beb1752387aed09eb2a0ea4c82ed1f3a35 (diff) | |
| download | linux-e9fb60a780fe7eae6a5d73e647208b2a7d3e3b54.tar.xz | |
posix-timers: Fix stale function name in comment
The comment in exit_itimers() still refers to itimer_delete(),
which was replaced by posix_timer_delete(). Update the comment
accordingly.
Signed-off-by: Zhan Xusheng <zhanxusheng@xiaomi.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20260326142210.98632-1-zhanxusheng@xiaomi.com
| -rw-r--r-- | kernel/time/posix-timers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/posix-timers.c b/kernel/time/posix-timers.c index 413e2389f0a5..9331e1614124 100644 --- a/kernel/time/posix-timers.c +++ b/kernel/time/posix-timers.c @@ -1092,7 +1092,7 @@ void exit_itimers(struct task_struct *tsk) } /* - * There should be no timers on the ignored list. itimer_delete() has + * There should be no timers on the ignored list. posix_timer_delete() has * mopped them up. */ if (!WARN_ON_ONCE(!hlist_empty(&tsk->signal->ignored_posix_timers))) |
