From: Jan Kiszka <jan.kiszka@domain.hid>
To: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] [PATCH] avoid installing inappropriate IRQ dispatcher
Date: Mon, 16 Oct 2006 11:42:51 +0200 [thread overview]
Message-ID: <4533541B.6060108@domain.hid> (raw)
[-- Attachment #1: Type: text/plain, Size: 490 bytes --]
In the (corner) case that someone requests to install a shared edge IRQ
while the related support is not enabled (!CONFIG_XENO_OPT_SHIRQ_EDGE),
BUT the opposite type (CONFIG_XENO_OPT_SHIRQ_LEVEL), Xenomai so far
incorrectly installs the level-type handler. For the other way around,
the non-shared dispatch handler is installed, which is also not correct.
This patch fixes the issue by returning an error on registration,
clearly indicating the system misconfiguration to the caller.
Jan
[-- Attachment #2: pick-shared-irq-handler.patch --]
[-- Type: text/plain, Size: 1452 bytes --]
---
ChangeLog | 5 +++++
ksrc/nucleus/intr.c | 15 ++++++++++-----
2 files changed, 15 insertions(+), 5 deletions(-)
Index: ksrc/nucleus/intr.c
===================================================================
--- ksrc/nucleus/intr.c.orig
+++ ksrc/nucleus/intr.c
@@ -340,14 +340,19 @@ static inline int xnintr_irq_attach(xnin
void (*handler) (unsigned, void *) = &xnintr_irq_handler;
if (intr->flags & XN_ISR_SHARED) {
-#if defined(CONFIG_XENO_OPT_SHIRQ_LEVEL)
- handler = &xnintr_shirq_handler;
-#endif /* CONFIG_XENO_OPT_SHIRQ_LEVEL */
-
-#if defined(CONFIG_XENO_OPT_SHIRQ_EDGE)
if (intr->flags & XN_ISR_EDGE)
+#if defined(CONFIG_XENO_OPT_SHIRQ_EDGE)
handler = &xnintr_edge_shirq_handler;
+#else /* !CONFIG_XENO_OPT_SHIRQ_EDGE */
+ return -ENOSYS;
#endif /* CONFIG_XENO_OPT_SHIRQ_EDGE */
+ else
+#if defined(CONFIG_XENO_OPT_SHIRQ_LEVEL)
+ handler = &xnintr_shirq_handler;
+#else /* !CONFIG_XENO_OPT_SHIRQ_LEVEL */
+ return -ENOSYS;
+#endif /* CONFIG_XENO_OPT_SHIRQ_LEVEL */
+
}
shirq->unhandled = 0;
Index: ChangeLog
===================================================================
--- ChangeLog.orig
+++ ChangeLog
@@ -1,3 +1,8 @@
+2006-10-16 Jan Kiszka <jan.kiszka@domain.hid>
+
+ * ksrc/nucleus/intr.x (xnintr_irq_attach): Return error on
+ mismatching shared-IRQ support.
+
2006-10-15 Philippe Gerum <rpm@xenomai.org>
* ksrc/arch/powerpc/patches: Upgrade to 2.6.14-ppc-1.5-00.
next reply other threads:[~2006-10-16 9:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-16 9:42 Jan Kiszka [this message]
2006-10-20 14:14 ` [Xenomai-core] [PATCH] avoid installing inappropriate IRQ dispatcher Philippe Gerum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4533541B.6060108@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.