diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2018-05-05 03:19:35 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-06-03 20:40:29 +1000 |
commit | e360cd37f0e9bac7b5f623132549e2d4b6417399 (patch) | |
tree | bbaa60cc53c21e1a5b7dd2efe18850e585712ec9 /arch/powerpc/include | |
parent | 21bfd6a8e9999f40f9eae09ca6ba33e7f75f0be4 (diff) | |
download | linux-e360cd37f0e9bac7b5f623132549e2d4b6417399.tar.bz2 |
powerpc/time: account broadcast timer event interrupts separately
These are not local timer interrupts but IPIs. It's good to be able
to see how timer offloading is behaving, so split these out into
their own category.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/hardirq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/hardirq.h b/arch/powerpc/include/asm/hardirq.h index 5986d473722b..20b01897ea5d 100644 --- a/arch/powerpc/include/asm/hardirq.h +++ b/arch/powerpc/include/asm/hardirq.h @@ -8,6 +8,7 @@ typedef struct { unsigned int __softirq_pending; unsigned int timer_irqs_event; + unsigned int broadcast_irqs_event; unsigned int timer_irqs_others; unsigned int pmu_irqs; unsigned int mce_exceptions; |