The following commit has been merged into the irq/urgent branch of tip:
Commit-ID: ce09ccc50208c04a1b03abfd530b5d6314258fd0
Gitweb:
https://git.kernel.org/tip/ce09ccc50208c04a1b03abfd530b5d6314258fd0
Author: Thomas Gleixner <[email protected]>
AuthorDate: Wed, 13 Jan 2021 15:43:18 +01:00
Committer: Thomas Gleixner <[email protected]>
CommitterDate: Wed, 13 Jan 2021 15:48:05 +01:00
genirq: Export irq_check_status_bit()
One of the users can be built modular:
ERROR: modpost: "irq_check_status_bit" [drivers/perf/arm_spe_pmu.ko]
undefined!
Fixes: fdd029630434 ("genirq: Move status flag checks to core")
Reported-by: Guenter Roeck <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
---
kernel/irq/manage.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index ab8567f..dec3f73 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -2859,3 +2859,4 @@ bool irq_check_status_bit(unsigned int irq, unsigned int
bitmask)
rcu_read_unlock();
return res;
}
+EXPORT_SYMBOL_GPL(irq_check_status_bit);