[tip: timers/core] posix-timers: Fix stale function name in comment
From: tip-bot2 for Zhan Xusheng
Date: Sat Mar 28 2026 - 09:20:52 EST
The following commit has been merged into the timers/core branch of tip:
Commit-ID: e9fb60a780fe7eae6a5d73e647208b2a7d3e3b54
Gitweb: https://git.kernel.org/tip/e9fb60a780fe7eae6a5d73e647208b2a7d3e3b54
Author: Zhan Xusheng <zhanxusheng1024@xxxxxxxxx>
AuthorDate: Thu, 26 Mar 2026 22:22:10 +08:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxx>
CommitterDate: Sat, 28 Mar 2026 14:18:13 +01:00
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@xxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxx>
Link: https://patch.msgid.link/20260326142210.98632-1-zhanxusheng@xxxxxxxxxx
---
kernel/time/posix-timers.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/time/posix-timers.c b/kernel/time/posix-timers.c
index 413e238..9331e16 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)))