git: 056408aababf - stable/13 - linuxkpi: Define `IRQ_NOTCONNECTED`
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Feb 2023 11:56:29 UTC
The branch stable/13 has been updated by dumbbell (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=056408aababf58e5c1b7d251619243bf9f36e508
commit 056408aababf58e5c1b7d251619243bf9f36e508
Author: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2023-02-10 10:26:17 +0000
Commit: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
CommitDate: 2023-02-16 11:55:20 +0000
linuxkpi: Define `IRQ_NOTCONNECTED`
Reviewed by: manu
Approved by: manu
Differential Revision: https://reviews.freebsd.org/D38539
(cherry picked from commit 210e756d4b32f43e8cc5f748456158757892a46a)
---
sys/compat/linuxkpi/common/include/linux/interrupt.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/compat/linuxkpi/common/include/linux/interrupt.h b/sys/compat/linuxkpi/common/include/linux/interrupt.h
index 3bc98aa88ba4..8c394aa2a690 100644
--- a/sys/compat/linuxkpi/common/include/linux/interrupt.h
+++ b/sys/compat/linuxkpi/common/include/linux/interrupt.h
@@ -44,6 +44,8 @@ typedef irqreturn_t (*irq_handler_t)(int, void *);
#define IRQF_SHARED RF_SHAREABLE
+#define IRQ_NOTCONNECTED (1U << 31)
+
struct irq_ent;
void linux_irq_handler(void *);