diff options
| author | Thomas Gleixner <tglx@kernel.org> | 2026-06-13 15:31:03 +0200 |
|---|---|---|
| committer | Thomas Gleixner <tglx@kernel.org> | 2026-06-13 15:47:59 +0200 |
| commit | 8f727615134abc6382f0ea07b90270d7bdde578f (patch) | |
| tree | dd34a2d13795cf059ad7c043af4651765bfea4dd | |
| parent | 171cc0d9eed1cad5de7ce6a212efbeda390edb0f (diff) | |
x86/irq: Add missing 's' back to thermal event printoutrefs/merge-window/0ff315766685b74ebb0b20bf9eb039ef31509057
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@intel.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Closes: https://lore.kernel.org/oe-lkp/202606121325.97b29701-lkp@intel.com
| -rw-r--r-- | arch/x86/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index 9d98c81fcd24..30122f0b3af9 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"), |
