summaryrefslogtreecommitdiffstats
path: root/kernel/irq/debugfs.c
diff options
context:
space:
mode:
authorMarc Zyngier <maz@kernel.org>2020-05-19 14:58:13 +0100
committerMarc Zyngier <maz@kernel.org>2020-09-13 17:04:38 +0100
commit83cfac95c01817819c2a51f0931d798d851f8a08 (patch)
treede7e3d7ac19402c2457b5f090c79752290bc51ff /kernel/irq/debugfs.c
parentc5e5ec033c4ab25c53f1fd217849e75deb0bf7bf (diff)
downloadlinux-83cfac95c01817819c2a51f0931d798d851f8a08.tar.gz
linux-83cfac95c01817819c2a51f0931d798d851f8a08.tar.bz2
linux-83cfac95c01817819c2a51f0931d798d851f8a08.zip
genirq: Allow interrupts to be excluded from /proc/interrupts
A number of architectures implement IPI statistics directly, duplicating the core kstat_irqs accounting. As we move IPIs to being actual IRQs, we would end-up with a confusing display in /proc/interrupts (where the IPIs would appear twice). In order to solve this, allow interrupts to be flagged as "hidden", which excludes them from /proc/interrupts. Reviewed-by: Valentin Schneider <valentin.schneider@arm.com> Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'kernel/irq/debugfs.c')
-rw-r--r--kernel/irq/debugfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/irq/debugfs.c b/kernel/irq/debugfs.c
index b95ff5d5f4bd..acabc0c0e46b 100644
--- a/kernel/irq/debugfs.c
+++ b/kernel/irq/debugfs.c
@@ -136,6 +136,7 @@ static const struct irq_bit_descr irqdesc_states[] = {
BIT_MASK_DESCR(_IRQ_PER_CPU_DEVID),
BIT_MASK_DESCR(_IRQ_IS_POLLED),
BIT_MASK_DESCR(_IRQ_DISABLE_UNLAZY),
+ BIT_MASK_DESCR(_IRQ_HIDDEN),
};
static const struct irq_bit_descr irqdesc_istates[] = {