From: Jan Kiszka <jan.kiszka@domain.hid>
To: rpm@xenomai.org
Cc: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] [PATCH] avoid resched test on syscall entry (was: xnsched_resched_p test in hisyscall)
Date: Fri, 19 Oct 2007 10:04:45 +0200 [thread overview]
Message-ID: <4718651D.9070602@domain.hid> (raw)
In-Reply-To: <1192764423.6252.4.camel@domain.hid>
[-- Attachment #1: Type: text/plain, Size: 698 bytes --]
Philippe Gerum wrote:
> On Thu, 2007-10-18 at 22:46 +0200, Jan Kiszka wrote:
>> Hi Philippe,
>>
>> what's the point about
>>
>> if (xnsched_resched_p())
>> xnpod_schedule();
>>
>> at the beginning of do_hisyscall_event() [1]? Could you provide a
>> comment for the background of this hunk? Or can we even remove it?
>
> No, we can't. It's a Blackfin-specific thing in disguise actually, so we
> may make this code conditional through some arch-dependent wrapper
> though.
> http://www.rts.uni-hannover.de/xenomai/lxr/source/include/asm-blackfin/bits/pod.h#141
>
Something like the attached patch?
Jan
--
Siemens AG, Corporate Technology, CT SE 2
Corporate Competence Center Embedded Linux
[-- Attachment #2: add-xnarch_hisyscall_entry.patch --]
[-- Type: text/x-patch, Size: 1526 bytes --]
---
include/asm-blackfin/system.h | 7 +++++++
include/asm-generic/system.h | 4 ++++
ksrc/nucleus/shadow.c | 3 +--
3 files changed, 12 insertions(+), 2 deletions(-)
Index: xenomai/include/asm-blackfin/system.h
===================================================================
--- xenomai.orig/include/asm-blackfin/system.h
+++ xenomai/include/asm-blackfin/system.h
@@ -95,6 +95,13 @@ static inline void xnarch_free_host_mem
kfree(chunk);
}
+static inline void xnarch_hisyscall_entry(void)
+{
+ if (xnsched_resched_p())
+ xnpod_schedule();
+}
+#define xnarch_hisyscall_entry xnarch_hisyscall_entry
+
#ifdef __cplusplus
}
#endif
Index: xenomai/include/asm-generic/system.h
===================================================================
--- xenomai.orig/include/asm-generic/system.h
+++ xenomai/include/asm-generic/system.h
@@ -410,6 +410,10 @@ static inline int xnarch_remap_io_page_r
return wrap_remap_io_page_range(vma,from,to,size,prot);
}
+#ifndef xnarch_hisyscall_entry
+static inline void xnarch_hisyscall_entry(void) { }
+#endif
+
#ifdef __cplusplus
}
#endif
Index: xenomai/ksrc/nucleus/shadow.c
===================================================================
--- xenomai.orig/ksrc/nucleus/shadow.c
+++ xenomai/ksrc/nucleus/shadow.c
@@ -1878,8 +1878,7 @@ static inline int do_hisyscall_event(uns
if (!xnpod_active_p())
goto no_skin;
- if (xnsched_resched_p())
- xnpod_schedule();
+ xnarch_hisyscall_entry();
p = current;
thread = xnshadow_thread(p);
next prev parent reply other threads:[~2007-10-19 8:04 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-18 20:46 [Xenomai-core] xnsched_resched_p test in hisyscall Jan Kiszka
2007-10-19 3:27 ` Philippe Gerum
2007-10-19 8:04 ` Jan Kiszka [this message]
2007-11-05 7:53 ` [Xenomai-core] [PATCH] avoid resched test on syscall entry Jan Kiszka
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=4718651D.9070602@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=rpm@xenomai.org \
--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.