powerpc: Make irq_stat.timers_irqs counting more specific

Current irq_stat.timers_irqs counting doesn't discriminate timer event handler
and other timer interrupt(like arch_irq_work_raise). Sometimes we need to know
exactly how much interrupts timer event handler fired, so let's be more specific
on this.

Signed-off-by: Fan Du <fan.du@windriver.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
fan.du
2013-01-23 16:06:11 +08:00
committed by Benjamin Herrenschmidt
parent 0ce636700c
commit c041cfa2af
3 changed files with 13 additions and 5 deletions

View File

@@ -6,7 +6,8 @@
typedef struct {
unsigned int __softirq_pending;
unsigned int timer_irqs;
unsigned int timer_irqs_event;
unsigned int timer_irqs_others;
unsigned int pmu_irqs;
unsigned int mce_exceptions;
unsigned int spurious_irqs;