|
@@ -26,40 +26,3 @@ void __weak nmi_disable(void)
|
|
|
{
|
|
|
|
|
|
}
|
|
|
-
|
|
|
-#ifdef CONFIG_PROC_FS
|
|
|
-int show_interrupts(struct seq_file *p, void *v)
|
|
|
-{
|
|
|
- int i = *(loff_t *)v, cpu;
|
|
|
- struct irqaction *action;
|
|
|
- unsigned long flags;
|
|
|
-
|
|
|
- if (i == 0) {
|
|
|
- seq_puts(p, " ");
|
|
|
- for_each_online_cpu(cpu)
|
|
|
- seq_printf(p, "CPU%d ", cpu);
|
|
|
- seq_putc(p, '\n');
|
|
|
- }
|
|
|
-
|
|
|
- if (i < NR_IRQS) {
|
|
|
- raw_spin_lock_irqsave(&irq_desc[i].lock, flags);
|
|
|
- action = irq_desc[i].action;
|
|
|
- if (!action)
|
|
|
- goto unlock;
|
|
|
-
|
|
|
- seq_printf(p, "%3d: ", i);
|
|
|
- for_each_online_cpu(cpu)
|
|
|
- seq_printf(p, "%10u ", kstat_irqs_cpu(i, cpu));
|
|
|
- seq_printf(p, " %8s", irq_desc[i].chip->name ? : "-");
|
|
|
- seq_printf(p, " %s", action->name);
|
|
|
- for (action = action->next; action; action = action->next)
|
|
|
- seq_printf(p, ", %s", action->name);
|
|
|
-
|
|
|
- seq_putc(p, '\n');
|
|
|
- unlock:
|
|
|
- raw_spin_unlock_irqrestore(&irq_desc[i].lock, flags);
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-#endif
|