[tip: irq/core] x86/irq: Add missing 's' back to thermal event printout

From: tip-bot2 for Thomas Gleixner

Date: Sat Jun 13 2026 - 09:49:46 EST


The following commit has been merged into the irq/core branch of tip:

Commit-ID: 8f727615134abc6382f0ea07b90270d7bdde578f
Gitweb: https://git.kernel.org/tip/8f727615134abc6382f0ea07b90270d7bdde578f
Author: Thomas Gleixner <tglx@xxxxxxxxxx>
AuthorDate: Sat, 13 Jun 2026 15:31:03 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxx>
CommitterDate: Sat, 13 Jun 2026 15:47:59 +02:00

x86/irq: Add missing 's' back to thermal event printout

The /proc/interrupt handling rework dropped a 's' in the thermal event
printout, which breaks the thermal test in the Intel LKVS suite.

Bring the important letter back.

Fixes: 2b57c69917ee ("x86/irq: Make irqstats array based")
Reported-by: kernel test robot <oliver.sang@xxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxx>
Closes: https://lore.kernel.org/oe-lkp/202606121325.97b29701-lkp@xxxxxxxxx
---
arch/x86/kernel/irq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
index 9d98c81..30122f0 100644
--- a/arch/x86/kernel/irq.c
+++ b/arch/x86/kernel/irq.c
@@ -92,7 +92,7 @@ static const struct irq_stat_info irq_stat_info[IRQ_COUNT_MAX] = {
#endif
ISS(TLB, "TLB", " TLB shootdowns\n"),
#ifdef CONFIG_X86_THERMAL_VECTOR
- ISS(THERMAL_APIC, "TRM", " Thermal event interrupt\n"),
+ ISS(THERMAL_APIC, "TRM", " Thermal event interrupts\n"),
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
ISS(THRESHOLD_APIC, "THR", " Threshold APIC interrupts\n"),