Re: [PATCH] expand /proc/interrupts to include missing vectors, v2

2007-08-01 Thread Lennart Sorensen
On Mon, Jul 30, 2007 at 08:17:18PM -0400, Joe Korty wrote: > Add missing IRQs and IRQ descriptions to /proc/interrupts. > > /proc/interrupts is most useful when it displays every > IRQ vector in use by the system, not just those somebody > thought would be interesting. > > This patch inserts the

Re: [PATCH] expand /proc/interrupts to include missing vectors, v2

2007-07-30 Thread Andrew Morton
On Mon, 30 Jul 2007 20:17:18 -0400 Joe Korty <[EMAIL PROTECTED]> wrote: > + seq_printf(p, "RES: "); > + seq_printf(p, "CAL: "); > + seq_printf(p, "TLB: "); > + seq_printf(p, "TRM: "); Documentation/filesystems/proc.txt presently describes NMI:, LOC:

Re: [PATCH] expand /proc/interrupts to include missing vectors, v2

2007-07-30 Thread Gabriel C
Joe Korty wrote: > +#ifdef CONFIG_SMP > + seq_printf(p, "RES: "); > + for_each_online_cpu(j) > + seq_printf(p, "%10u ", > + per_cpu(irq_stat,j).irq_resched_counts); > + seq_printf(p, " Rescheduling interrupts\n");

[PATCH] expand /proc/interrupts to include missing vectors, v2

2007-07-30 Thread Joe Korty
Add missing IRQs and IRQ descriptions to /proc/interrupts. /proc/interrupts is most useful when it displays every IRQ vector in use by the system, not just those somebody thought would be interesting. This patch inserts the following vector displays to the i386 and x86_64 platforms, as appropriat