From: Jan Kiszka <jan.kiszka@domain.hid>
To: Stephan Zimmermann <s.zimmermann@domain.hid>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-help] Timer problemm with 2.2.4 release
Date: Thu, 26 Oct 2006 12:50:56 +0200 [thread overview]
Message-ID: <45409310.5070504@domain.hid> (raw)
In-Reply-To: <200610261227.29595.s.zimmermann@domain.hid>
[-- Attachment #1: Type: text/plain, Size: 2928 bytes --]
Stephan Zimmermann wrote:
> Hello list,
> I recently switched from 2.2.0 on Kernel 2.6.17.6 to more actual 2.2.4 on
> Kernel 2.6.17.14.
> After upgrading my periodic tasks won't work at all (task_wait and
> set_periodic functions return errors). I wrote a little testprogram to verify
> it's not a problem with my Software. The code runs fine on my Notebook, still
> under 2.2.0/2.6.17.6, but won't work on my Desktop (AMD X2 / VIA K8T800) with
> the all-new Kernel/Xenomai installation. Maybe there is some config-thing i
> have overseen?
>
> #include <iostream>
> #include <sys/mman.h>
>
> #include "native/task.h"
> #include "native/timer.h"
>
> RT_TASK maintask;
>
> int main(void){
> std::cout << "xenomai 2.2.4 timer-test" << std::endl;
> mlockall(MCL_CURRENT | MCL_FUTURE);
>
> int err;
> unsigned long overrun = 0;
>
> err = rt_task_shadow (&maintask,"maintask",10,0);
> std::cout << "task shadow:" << err << std::endl;
>
> err = rt_timer_set_mode(1000000);
> std::cout << "timer set mode:" << err << std::endl;
>
> err = rt_task_sleep(1000);
> std::cout << "task sleep:" << err << std::endl;
>
> err = rt_task_set_periodic(NULL,TM_NOW,1000);
> std::cout << "task set periodic:" << err << std::endl;
>
> for(int i = 0; i < 3; i++){
> err = rt_task_wait_period(&overrun);
> std::cout << "task wait period:" << err << " overrunns:" << overrun <<
> std::endl;
> }
>
> return 0;
> }
>
> Output on my Workstation:
> ----------------------------------------------
> xenomai 2.2.4 timer-test
> task shadow:0
> timer set mode:0
> task sleep:0
> task set periodic:-22
> task wait period:-11 overrunns:0
> task wait period:-11 overrunns:0
> task wait period:-11 overrunns:0
>
> Output on my Notebook:
> ----------------------------------------------
> xenomai 2.2.4 timer-test
I guess this is a typo (2.2.0?).
> task shadow:0
> timer set mode:0
> task sleep:0
> task set periodic:0
> task wait period:0 overrunns:0
> task wait period:0 overrunns:0
> task wait period:0 overrunns:0
>
Looks like we have a bug here:
http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#L3408
That new LART check doesn't consider the periodic mode where period does
not have the same unit as nkschedlat. Something like this might be
needed (quick hack alarm!):
--- ksrc/nucleus/pod.c (revision 1747)
+++ ksrc/nucleus/pod.c (working copy)
@@ -3413,7 +3413,7 @@ int xnpod_set_thread_periodic(xnthread_t
xntimer_stop(&thread->ptimer);
goto unlock_and_exit;
- } else if (period < nkschedlat) {
+ } else if (nkpod->tickvalue == 1 && period < nkschedlat) {
/* LART: detect periods which are shorter than the
* intrinsic latency figure; this must be a joke... */
err = -EINVAL;
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
next prev parent reply other threads:[~2006-10-26 10:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-26 10:27 [Xenomai-help] Timer problemm with 2.2.4 release Stephan Zimmermann
2006-10-26 10:50 ` Jan Kiszka [this message]
2006-10-26 12:01 ` Stephan Zimmermann
2006-10-27 18:12 ` 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=45409310.5070504@domain.hid \
--to=jan.kiszka@domain.hid \
--cc=s.zimmermann@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.