diff options
author | Helge Deller <deller@gmx.de> | 2013-05-18 19:35:44 +0000 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2013-05-24 22:35:26 +0200 |
commit | d0c3be806a3fe7f4abdb0f7e7287addb55e73f35 (patch) | |
tree | 13c96d75c8b8f30ab1eac74f5a0f28903fc7078f /arch/parisc/kernel/irq.c | |
parent | fbb46caa1bd2d99079a24f8a6ae0b33655e42fae (diff) | |
download | linux-d0c3be806a3fe7f4abdb0f7e7287addb55e73f35.tar.bz2 |
parisc: show number of FPE and unaligned access handler calls in /proc/interrupts
Show number of floating point assistant and unaligned access fixup
handler in /proc/interrupts file.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel/irq.c')
-rw-r--r-- | arch/parisc/kernel/irq.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index 55237a70e197..9c2d953f3de5 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c @@ -188,6 +188,14 @@ int arch_show_interrupts(struct seq_file *p, int prec) seq_printf(p, "%10u ", irq_stats(j)->irq_call_count); seq_puts(p, " Function call interrupts\n"); #endif + seq_printf(p, "%*s: ", prec, "UAH"); + for_each_online_cpu(j) + seq_printf(p, "%10u ", irq_stats(j)->irq_unaligned_count); + seq_puts(p, " Unaligned access handler traps\n"); + seq_printf(p, "%*s: ", prec, "FPA"); + for_each_online_cpu(j) + seq_printf(p, "%10u ", irq_stats(j)->irq_fpassist_count); + seq_puts(p, " Floating point assist traps\n"); seq_printf(p, "%*s: ", prec, "TLB"); for_each_online_cpu(j) seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count); |