Atsushi Nemoto wrote: > > The kgdb_ealy_setup check should be at beginning of init_IRQ (before > set_irq_noprobe loop)? I would agree, and it looks like the following now in the patch. I will revalidate with the HW to ensure there is no regression. :-) Jason. @@ -130,8 +135,18 @@ void __init init_IRQ(void) { int i; +#ifdef CONFIG_KGDB + if (kgdb_early_setup) + return; +#endif + for (i = 0; i < NR_IRQS; i++) set_irq_noprobe(i); arch_init_irq(); + +#ifdef CONFIG_KGDB + if (!kgdb_early_setup) + kgdb_early_setup = 1; +#endif }