* [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n
@ 2013-01-29 12:54 Michael Haberler
2013-02-02 20:19 ` John Morris
2013-04-14 5:54 ` Gilles Chanteperdrix
0 siblings, 2 replies; 5+ messages in thread
From: Michael Haberler @ 2013-01-29 12:54 UTC (permalink / raw)
To: xenomai
I'm testing linuxcnc with John's 3.5.7 - 2.6.2.1 kernel and found an issue with the deprecated linuxcnc xenomai-kernel threads version (the userland threads version is fine; both using native skin). I traced that back to rt_timer_ticks2ns(30000) returning zero.
The config difference I see is: CONFIG_XENO_OPT_TIMING_PERIODIC=y on 3.5.7, unset on 3.2.21
The way I read back messages I'd think that should be unset for native and Posix skins; these are compiled in:
CONFIG_XENO_SKIN_NATIVE=y
CONFIG_XENO_SKIN_POSIX=y
CONFIG_XENO_SKIN_PSOS=m
CONFIG_XENO_SKIN_UITRON=m
CONFIG_XENO_SKIN_VRTX=m
CONFIG_XENO_SKIN_VXWORKS=m
CONFIG_XENO_SKIN_RTDM=y
(not that we're about to use the other skins soon, but I understand John is shooting for a most generic setup)
Am I correct to assume the right thing to do is to set CONFIG_XENO_OPT_TIMING_PERIODIC=n for that purpose?
thanks in advance,
Michael
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n
2013-01-29 12:54 [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n Michael Haberler
@ 2013-02-02 20:19 ` John Morris
[not found] ` <510D8568.6080406@xenomai.org>
2013-04-14 5:54 ` Gilles Chanteperdrix
1 sibling, 1 reply; 5+ messages in thread
From: John Morris @ 2013-02-02 20:19 UTC (permalink / raw)
To: Michael Haberler; +Cc: xenomai
On 01/29/2013 06:54 AM, Michael Haberler wrote:
> I'm testing linuxcnc with John's 3.5.7 - 2.6.2.1 kernel and found an
> issue with the deprecated linuxcnc xenomai-kernel threads version
> (the userland threads version is fine; both using native skin). I
> traced that back to rt_timer_ticks2ns(30000) returning zero.
>
> The config difference I see is: CONFIG_XENO_OPT_TIMING_PERIODIC=y on
> 3.5.7, unset on 3.2.21
The periodic timing option =y made it into my kernel
script-kiddie-style: I copied it directly from Gilles's config without
trying to understand every option.
>
> The way I read back messages I'd think that should be unset for
> native and Posix skins; these are compiled in:
>
> CONFIG_XENO_SKIN_NATIVE=y
> CONFIG_XENO_SKIN_POSIX=y
> CONFIG_XENO_SKIN_PSOS=m
> CONFIG_XENO_SKIN_UITRON=m
> CONFIG_XENO_SKIN_VRTX=m
> CONFIG_XENO_SKIN_VXWORKS=m
> CONFIG_XENO_SKIN_RTDM=y
Now that I've gone back and read, I don't understand either. Native and
posix styles need periodic timing unset.
At least the VXWorks skin needs periodic timing, so loading the VXWorks
skin module with periodic timing unset has no purpose, since RT programs
using the skin won't work.
>
> (not that we're about to use the other skins soon, but I understand
> John is shooting for a most generic setup)
Yes, that's right, and of course with a preference to support the work
you did on LinuxCNC. :) Luckily, its interface with Xenomai is pretty
simple and uses the native skin, which I would have picked for a generic
kernel anyway.
>
> Am I correct to assume the right thing to do is to set
> CONFIG_XENO_OPT_TIMING_PERIODIC=n for that purpose?
Still scratching my head on this.
John
>
> thanks in advance,
>
> Michael
>
>
> _______________________________________________
> Xenomai mailing list
> Xenomai@xenomai.org
> http://www.xenomai.org/mailman/listinfo/xenomai
>
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n
2013-01-29 12:54 [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n Michael Haberler
2013-02-02 20:19 ` John Morris
@ 2013-04-14 5:54 ` Gilles Chanteperdrix
2013-04-14 8:42 ` Michael Haberler
1 sibling, 1 reply; 5+ messages in thread
From: Gilles Chanteperdrix @ 2013-04-14 5:54 UTC (permalink / raw)
To: Michael Haberler; +Cc: xenomai
On 01/29/2013 01:54 PM, Michael Haberler wrote:
> I'm testing linuxcnc with John's 3.5.7 - 2.6.2.1 kernel and found an
> issue with the deprecated linuxcnc xenomai-kernel threads version
> (the userland threads version is fine; both using native skin). I
> traced that back to rt_timer_ticks2ns(30000) returning zero.
Hi Michael,
I am unable to reproduce this issue. I have written the following
kernel code:
#include <native/timer.h>
int init(void)
{
rt_timer_set_mode(0);
xnprintf("mode aperiodic, ticks2ns: %Lu\n", rt_timer_ticks2ns(30000));
rt_timer_set_mode(1000000);
xnprintf("mode periodic, ticks2ns: %Lu\n", rt_timer_ticks2ns(30000));
return 0;
}
module_init(init);
MODULE_LICENSE("GPL");
And I get:
[ 17.366373] Xenomai: mode 0, ticks2ns: 30000
[ 17.370918] Xenomai: mode periodic, ticks2ns: 30000000000
Which is the expected behaviour.
Could you send us a test case allowing to reproduce the issue you
encountered ?
--
Gilles.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n
2013-04-14 5:54 ` Gilles Chanteperdrix
@ 2013-04-14 8:42 ` Michael Haberler
0 siblings, 0 replies; 5+ messages in thread
From: Michael Haberler @ 2013-04-14 8:42 UTC (permalink / raw)
To: Gilles Chanteperdrix; +Cc: xenomai
Hi Gilles,
sorry I should have mentioned I fixed this by removing the code - problematic behaviour vanished.
this was a mystification and I think a programming error on my behalf - that ticket can be closed as 'user error'
thanks!
Michael
Am 14.04.2013 um 07:54 schrieb Gilles Chanteperdrix:
> On 01/29/2013 01:54 PM, Michael Haberler wrote:
>
>> I'm testing linuxcnc with John's 3.5.7 - 2.6.2.1 kernel and found an
>> issue with the deprecated linuxcnc xenomai-kernel threads version
>> (the userland threads version is fine; both using native skin). I
>> traced that back to rt_timer_ticks2ns(30000) returning zero.
>
>
> Hi Michael,
>
> I am unable to reproduce this issue. I have written the following
> kernel code:
>
> #include <native/timer.h>
>
> int init(void)
> {
> rt_timer_set_mode(0);
> xnprintf("mode aperiodic, ticks2ns: %Lu\n", rt_timer_ticks2ns(30000));
> rt_timer_set_mode(1000000);
> xnprintf("mode periodic, ticks2ns: %Lu\n", rt_timer_ticks2ns(30000));
>
> return 0;
> }
>
> module_init(init);
> MODULE_LICENSE("GPL");
>
> And I get:
> [ 17.366373] Xenomai: mode 0, ticks2ns: 30000
> [ 17.370918] Xenomai: mode periodic, ticks2ns: 30000000000
>
> Which is the expected behaviour.
>
> Could you send us a test case allowing to reproduce the issue you
> encountered ?
>
>
> --
> Gilles.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-04-14 8:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-29 12:54 [Xenomai] kconfig CONFIG_XENO_OPT_TIMING_PERIODIC=y/n Michael Haberler
2013-02-02 20:19 ` John Morris
[not found] ` <510D8568.6080406@xenomai.org>
2013-02-02 21:31 ` Gilles Chanteperdrix
2013-04-14 5:54 ` Gilles Chanteperdrix
2013-04-14 8:42 ` Michael Haberler
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.