Skip to content

Commit

Permalink
ARM: smp: Use irq_desc_kstat_cpu() in show_ipi_list()
Browse files Browse the repository at this point in the history
The irq descriptor is already there, no need to look it up again.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20201210194043.454288890@linutronix.de
  • Loading branch information
Thomas Gleixner committed Dec 15, 2020
1 parent 501e2db commit 88c6377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ void show_ipi_list(struct seq_file *p, int prec)
seq_printf(p, "%*s%u: ", prec - 1, "IPI", i);

for_each_online_cpu(cpu)
seq_printf(p, "%10u ", kstat_irqs_cpu(irq, cpu));
seq_printf(p, "%10u ", irq_desc_kstat_cpu(ipi_desc[i], cpu));

seq_printf(p, " %s\n", ipi_types[i]);
}
Expand Down

0 comments on commit 88c6377

Please sign in to comment.