[PATCH] x86, ioapic: only print ioapic debug information for IRQs belonging to an ioapic chip

From: Mathias Nyman
Date: Mon Oct 10 2011 - 10:00:19 EST


with "apic=verbose" the print_IO_APIC() function tries to print IRQ to pin mappings
for every active irq. It assumes chip_data is of type irq_cfg and may cause an oops if not.

As the print_IO_APIC() is called from a late_initcall other chained irq chips may already be
registered with custom chip_data information, causing an oops. This is the case with intel
MID SoC devices with gpio demuxers registered as irq_chips.

Signed-off-by: Mathias Nyman <mathias.nyman@xxxxxxxxxxxxxxx>
---
arch/x86/kernel/apic/io_apic.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 472e094..0a37ec0 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -1499,6 +1499,7 @@ __apicdebuginit(void) print_IO_APIC(void)
unsigned long flags;
struct irq_cfg *cfg;
unsigned int irq;
+ struct irq_chip *chip;

printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
for (i = 0; i < nr_ioapics; i++)
@@ -1618,6 +1619,10 @@ __apicdebuginit(void) print_IO_APIC(void)
for_each_active_irq(irq) {
struct irq_pin_list *entry;

+ chip = irq_get_chip(irq);
+ if (chip != &ioapic_chip && chip != &ir_ioapic_chip)
+ continue;
+
cfg = irq_get_chip_data(irq);
if (!cfg)
continue;
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/