Skip to content

Commit

Permalink
[PATCH] ARM SMP: We list IRQs for present CPUs, not online CPUs
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jul 11, 2005
1 parent d12734d commit e11b223
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 @@ -355,7 +355,7 @@ void show_ipi_list(struct seq_file *p)

seq_puts(p, "IPI:");

for_each_online_cpu(cpu)
for_each_present_cpu(cpu)
seq_printf(p, " %10lu", per_cpu(ipi_data, cpu).ipi_count);

seq_putc(p, '\n');
Expand Down

0 comments on commit e11b223

Please sign in to comment.