From: Jan Kiszka <jan.kiszka@domain.hid>
To: Dmitry Adamushko <dmitry.adamushko@domain.hid>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-core] [PATCH] relax context check for rt_task_suspend
Date: Wed, 12 Jul 2006 14:25:31 +0200 [thread overview]
Message-ID: <44B4EA3B.1010109@domain.hid> (raw)
In-Reply-To: <b647ffbd0607120500jccf65cdqd781ff668f2c7ba8@domain.hid>
[-- Attachment #1.1: Type: text/plain, Size: 1021 bytes --]
Dmitry Adamushko wrote:
> Hi,
>
>
> given the existing doc of rt_task_suspend about allowed environments and
>> also when thinking about the logic behind it, I see no reason why
>> xnpod_unblockable_p() is also applied to task != NULL.
>
>
>
> XNLOCK is set? anyway, I don't see how the patch makes current logic
> different...
>
> in both cases xnpod_unblockable_p() has a chance to be executed only when
> task != NULL (thanks to goto). and -EPERM is returned when task != NULL &&
> xnpod_unblockable_p() == true.
>
>
> if (!task) {
>> err = xeno_handle_error(task, XENO_TASK_MAGIC, RT_TASK);
>> goto unlock_and_exit;
>> - }
>> -
>> - if (xnpod_unblockable_p()) {
>> + } else if (xnpod_unblockable_p()) {
>> err = -EPERM;
>> goto unlock_and_exit;
>> }
>>
>>
>>
>
>
Oh, my dear. I should stop hacking patches while talking to colleagues.
Does this one make more sense?
Jan
[-- Attachment #1.2: suspend-foreign-task-from-any-context-v2.patch --]
[-- Type: text/plain, Size: 977 bytes --]
Index: ksrc/skins/native/task.c
===================================================================
--- ksrc/skins/native/task.c (revision 1323)
+++ ksrc/skins/native/task.c (working copy)
@@ -391,9 +391,9 @@ int rt_task_start(RT_TASK *task, void (*
*
* - -EINVAL is returned if @a task is not a task descriptor.
*
- * - -EPERM is returned if @a task is NULL but not called from a task
- * context, or this service was called from a context which cannot
- * sleep (e.g. interrupt, non-realtime or scheduler locked).
+ * - -EPERM is returned if @a task is NULL and this service was called
+ * from a context which cannot sleep (e.g. interrupt, non-realtime or
+ * scheduler locked).
*
* - -EIDRM is returned if @a task is a deleted task descriptor.
*
@@ -432,7 +432,7 @@ int rt_task_suspend(RT_TASK *task)
goto unlock_and_exit;
}
- if (xnpod_unblockable_p()) {
+ if (xnpod_locked_p()) {
err = -EPERM;
goto unlock_and_exit;
}
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
next prev parent reply other threads:[~2006-07-12 12:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-12 9:27 [Xenomai-core] [PATCH] relax context check for rt_task_suspend Jan Kiszka
2006-07-12 12:00 ` Dmitry Adamushko
2006-07-12 12:25 ` Jan Kiszka [this message]
2006-07-12 12:33 ` Gilles Chanteperdrix
2006-07-12 13:31 ` Jan Kiszka
2006-07-12 14:44 ` Dmitry Adamushko
2006-07-12 14:56 ` Dmitry Adamushko
2006-07-12 13:45 ` Dmitry Adamushko
2006-07-12 14:30 ` Jan Kiszka
2006-07-12 15:55 ` Gilles Chanteperdrix
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=44B4EA3B.1010109@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=dmitry.adamushko@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.