Skip to content

Commit 4a0d310

Browse files
jbeulichKAGA-KOKO
authored andcommitted
x86, irq: Properly tag virtualization entry in /proc/interrupts
The mis-naming likely was a copy-and-paste effect. Signed-off-by: Jan Beulich <[email protected]> Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent f285f4a commit 4a0d310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/kernel/irq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ int arch_show_interrupts(struct seq_file *p, int prec)
127127
seq_puts(p, " Machine check polls\n");
128128
#endif
129129
#if IS_ENABLED(CONFIG_HYPERV) || defined(CONFIG_XEN)
130-
seq_printf(p, "%*s: ", prec, "THR");
130+
seq_printf(p, "%*s: ", prec, "HYP");
131131
for_each_online_cpu(j)
132132
seq_printf(p, "%10u ", irq_stats(j)->irq_hv_callback_count);
133133
seq_puts(p, " Hypervisor callback interrupts\n");

0 commit comments

Comments
 (0)