[tip: sched/hrtick] entry: Fix stale comment for irqentry_enter()
From: tip-bot2 for Mark Rutland
Date: Wed Apr 08 2026 - 06:19:00 EST
The following commit has been merged into the sched/hrtick branch of tip:
Commit-ID: 1f0d117cd6ca8e74e70e415e89b059fce37674c6
Gitweb: https://git.kernel.org/tip/1f0d117cd6ca8e74e70e415e89b059fce37674c6
Author: Mark Rutland <mark.rutland@xxxxxxx>
AuthorDate: Tue, 07 Apr 2026 14:16:41 +01:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxx>
CommitterDate: Wed, 08 Apr 2026 11:43:31 +02:00
entry: Fix stale comment for irqentry_enter()
The kerneldoc comment for irqentry_enter() refers to idtentry_exit(),
which is an accidental holdover from the x86 entry code that the generic
irqentry code was based on.
Correct this to refer to irqentry_exit().
Signed-off-by: Mark Rutland <mark.rutland@xxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxx>
Reviewed-by: Jinjie Ruan <ruanjinjie@xxxxxxxxxx>
Acked-by: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx>
Link: https://patch.msgid.link/20260407131650.3813777-2-mark.rutland@xxxxxxx
---
include/linux/irq-entry-common.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/irq-entry-common.h b/include/linux/irq-entry-common.h
index d26d1b1..3cf4d21 100644
--- a/include/linux/irq-entry-common.h
+++ b/include/linux/irq-entry-common.h
@@ -394,7 +394,7 @@ typedef struct irqentry_state {
* establish the proper context for NOHZ_FULL. Otherwise scheduling on exit
* would not be possible.
*
- * Returns: An opaque object that must be passed to idtentry_exit()
+ * Returns: An opaque object that must be passed to irqentry_exit()
*/
irqentry_state_t noinstr irqentry_enter(struct pt_regs *regs);