* [Xenomai-core] Xenomai 2.6.0, or -rc1?
@ 2011-08-26 12:34 Gilles Chanteperdrix
2011-08-26 13:05 ` Jan Kiszka
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Gilles Chanteperdrix @ 2011-08-26 12:34 UTC (permalink / raw)
To: xenomai@xenomai.org
Hi,
I think it is about time we release Xenomai 2.6.0. Has anyone anything
pending (maybe Alex)? Should we release an -rc first?
Thanks in advance for your input.
--
Gilles.
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 12:34 [Xenomai-core] Xenomai 2.6.0, or -rc1? Gilles Chanteperdrix @ 2011-08-26 13:05 ` Jan Kiszka 2011-08-26 18:07 ` Gilles Chanteperdrix 2011-08-26 15:34 ` Philippe Gerum 2011-08-29 23:00 ` Alexis Berlemont 2 siblings, 1 reply; 9+ messages in thread From: Jan Kiszka @ 2011-08-26 13:05 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai@xenomai.org On 2011-08-26 14:34, Gilles Chanteperdrix wrote: > > Hi, > > I think it is about time we release Xenomai 2.6.0. Has anyone anything > pending (maybe Alex)? Should we release an -rc first? No patches ATM, but [1] is still an open bug - a bug that affects the ABI. Jan [1] http://thread.gmane.org/gmane.linux.real-time.xenomai.devel/8343 -- Siemens AG, Corporate Technology, CT T DE IT 1 Corporate Competence Center Embedded Linux ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 13:05 ` Jan Kiszka @ 2011-08-26 18:07 ` Gilles Chanteperdrix 2011-08-26 18:19 ` Jan Kiszka 0 siblings, 1 reply; 9+ messages in thread From: Gilles Chanteperdrix @ 2011-08-26 18:07 UTC (permalink / raw) To: Jan Kiszka; +Cc: xenomai@xenomai.org On 08/26/2011 03:05 PM, Jan Kiszka wrote: > On 2011-08-26 14:34, Gilles Chanteperdrix wrote: >> >> Hi, >> >> I think it is about time we release Xenomai 2.6.0. Has anyone anything >> pending (maybe Alex)? Should we release an -rc first? > > No patches ATM, but [1] is still an open bug - a bug that affects the ABI. > > Jan > > [1] http://thread.gmane.org/gmane.linux.real-time.xenomai.devel/8343 > I had forgotten about this one. So, the only real problem is if a SCHED_NOTOTHER thread switches to SCHED_OTHER, this appears to be a corner case, so, I wonder if you should not simply add a special treatment, only for this corner case. What I have in mind is keeping a list of xnsynch in kernel-space (this basically means having an xnholder_t more in the xnsynch structure), and when we trip the corner case (thread with SCHED_FIFO switches to SCHED_OTHER), walk the list to find how many xnsynch the thread is the owner, we have that info in kernel-space, and set the refcnt accordingly. Or does it still sound overkill? -- Gilles. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 18:07 ` Gilles Chanteperdrix @ 2011-08-26 18:19 ` Jan Kiszka 2011-08-26 18:37 ` Gilles Chanteperdrix 0 siblings, 1 reply; 9+ messages in thread From: Jan Kiszka @ 2011-08-26 18:19 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai@xenomai.org On 2011-08-26 20:07, Gilles Chanteperdrix wrote: > On 08/26/2011 03:05 PM, Jan Kiszka wrote: >> On 2011-08-26 14:34, Gilles Chanteperdrix wrote: >>> >>> Hi, >>> >>> I think it is about time we release Xenomai 2.6.0. Has anyone anything >>> pending (maybe Alex)? Should we release an -rc first? >> >> No patches ATM, but [1] is still an open bug - a bug that affects the ABI. >> >> Jan >> >> [1] http://thread.gmane.org/gmane.linux.real-time.xenomai.devel/8343 >> > > I had forgotten about this one. So, the only real problem is if a > SCHED_NOTOTHER thread switches to SCHED_OTHER, this appears to be a > corner case, so, I wonder if you should not simply add a special > treatment, only for this corner case. > > What I have in mind is keeping a list of xnsynch in kernel-space (this > basically means having an xnholder_t more in the xnsynch structure), and > when we trip the corner case (thread with SCHED_FIFO switches to > SCHED_OTHER), walk the list to find how many xnsynch the thread is the > owner, we have that info in kernel-space, and set the refcnt accordingly. > > Or does it still sound overkill? > Mmh, need to think about it. Yeah, we do not support PTHREAD_MUTEX_INITIALIZER, so we do not share that part of the problem with futexes. If we have all objects and can explore ownership, we can also implement robust mutexes this way, i.e. waiter signaling when the owner dies. Jan -- Siemens AG, Corporate Technology, CT T DE IT 1 Corporate Competence Center Embedded Linux ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 18:19 ` Jan Kiszka @ 2011-08-26 18:37 ` Gilles Chanteperdrix 0 siblings, 0 replies; 9+ messages in thread From: Gilles Chanteperdrix @ 2011-08-26 18:37 UTC (permalink / raw) To: Jan Kiszka; +Cc: xenomai@xenomai.org On 08/26/2011 08:19 PM, Jan Kiszka wrote: > On 2011-08-26 20:07, Gilles Chanteperdrix wrote: >> On 08/26/2011 03:05 PM, Jan Kiszka wrote: >>> On 2011-08-26 14:34, Gilles Chanteperdrix wrote: >>>> >>>> Hi, >>>> >>>> I think it is about time we release Xenomai 2.6.0. Has anyone anything >>>> pending (maybe Alex)? Should we release an -rc first? >>> >>> No patches ATM, but [1] is still an open bug - a bug that affects the ABI. >>> >>> Jan >>> >>> [1] http://thread.gmane.org/gmane.linux.real-time.xenomai.devel/8343 >>> >> >> I had forgotten about this one. So, the only real problem is if a >> SCHED_NOTOTHER thread switches to SCHED_OTHER, this appears to be a >> corner case, so, I wonder if you should not simply add a special >> treatment, only for this corner case. >> >> What I have in mind is keeping a list of xnsynch in kernel-space (this >> basically means having an xnholder_t more in the xnsynch structure), and >> when we trip the corner case (thread with SCHED_FIFO switches to >> SCHED_OTHER), walk the list to find how many xnsynch the thread is the >> owner, we have that info in kernel-space, and set the refcnt accordingly. >> >> Or does it still sound overkill? >> > > Mmh, need to think about it. Yeah, we do not support > PTHREAD_MUTEX_INITIALIZER, so we do not share that part of the problem > with futexes. Actually, we could implement PTHREAD_MUTEX_INITIALIZER: when the magic is wrong, just issue a pthread_mutex_init syscall, and try locking again. But the problem is that this particular call to pthread_mutex_lock would be much heavier than locking an initialized mutex for reasons which are not obvious (besides, we would have to handle concurrency by some way, like having a pthread_once_t in pthread_mutex_t). I find not having PTHREAD_MUTEX_INITIALIZER more clear, even if this makes us not really posix compliant. > > If we have all objects and can explore ownership, we can also implement > robust mutexes this way, i.e. waiter signaling when the owner dies. > > Jan > -- Gilles. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 12:34 [Xenomai-core] Xenomai 2.6.0, or -rc1? Gilles Chanteperdrix 2011-08-26 13:05 ` Jan Kiszka @ 2011-08-26 15:34 ` Philippe Gerum 2011-08-29 23:00 ` Alexis Berlemont 2 siblings, 0 replies; 9+ messages in thread From: Philippe Gerum @ 2011-08-26 15:34 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai@xenomai.org On Fri, 2011-08-26 at 14:34 +0200, Gilles Chanteperdrix wrote: > Hi, > > I think it is about time we release Xenomai 2.6.0. Has anyone anything > pending (maybe Alex)? Should we release an -rc first? > > Thanks in advance for your input. > Nothing pending for 2.6, I'm focusing on 3.x now. However let's go for -rc1 first, this is a major release anyway. -- Philippe. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-26 12:34 [Xenomai-core] Xenomai 2.6.0, or -rc1? Gilles Chanteperdrix 2011-08-26 13:05 ` Jan Kiszka 2011-08-26 15:34 ` Philippe Gerum @ 2011-08-29 23:00 ` Alexis Berlemont 2011-08-30 11:05 ` Gilles Chanteperdrix 2011-08-30 18:53 ` Julien Delange 2 siblings, 2 replies; 9+ messages in thread From: Alexis Berlemont @ 2011-08-29 23:00 UTC (permalink / raw) To: Gilles Chanteperdrix; +Cc: xenomai@xenomai.org Hi, On Fri, Aug 26, 2011 at 2:34 PM, Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org> wrote: > > Hi, > > I think it is about time we release Xenomai 2.6.0. Has anyone anything > pending (maybe Alex)? Should we release an -rc first? > Yes. in my experimental branch, I have a few things which are not that experimental. I would like to push: - a first version of Julien Delange's ni_660x driver - Anders Blomdell's fix on duplicate sympbols with comedi - Anders Blomdell's fix in pcimio driver (wrong IRQ number after reboot) - some waveform generation tools (fully generic) - an overhaul of the testing drivers (fake + loop => fake) I will integrate them in my analogy branch and send a pull request if you are OK with that. Alexis. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-29 23:00 ` Alexis Berlemont @ 2011-08-30 11:05 ` Gilles Chanteperdrix 2011-08-30 18:53 ` Julien Delange 1 sibling, 0 replies; 9+ messages in thread From: Gilles Chanteperdrix @ 2011-08-30 11:05 UTC (permalink / raw) To: Alexis Berlemont; +Cc: xenomai@xenomai.org On 08/30/2011 01:00 AM, Alexis Berlemont wrote: > Hi, > > On Fri, Aug 26, 2011 at 2:34 PM, Gilles Chanteperdrix > <gilles.chanteperdrix@xenomai.org> wrote: >> >> Hi, >> >> I think it is about time we release Xenomai 2.6.0. Has anyone anything >> pending (maybe Alex)? Should we release an -rc first? >> > Yes. in my experimental branch, I have a few things which are not that > experimental. I would like to push: > - a first version of Julien Delange's ni_660x driver > - Anders Blomdell's fix on duplicate sympbols with comedi > - Anders Blomdell's fix in pcimio driver (wrong IRQ number after reboot) > - some waveform generation tools (fully generic) > - an overhaul of the testing drivers (fake + loop => fake) > > I will integrate them in my analogy branch and send a pull request if > you are OK with that. Ok for me. -- Gilles. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Xenomai-core] Xenomai 2.6.0, or -rc1? 2011-08-29 23:00 ` Alexis Berlemont 2011-08-30 11:05 ` Gilles Chanteperdrix @ 2011-08-30 18:53 ` Julien Delange 1 sibling, 0 replies; 9+ messages in thread From: Julien Delange @ 2011-08-30 18:53 UTC (permalink / raw) To: xenomai@xenomai.org On Tue, Aug 30, 2011 at 1:00 AM, Alexis Berlemont <alexis.berlemont@domain.hid> wrote: > - a first version of Julien Delange's ni_660x driver And also the one for the 670x board, no ? ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-08-30 18:53 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-08-26 12:34 [Xenomai-core] Xenomai 2.6.0, or -rc1? Gilles Chanteperdrix 2011-08-26 13:05 ` Jan Kiszka 2011-08-26 18:07 ` Gilles Chanteperdrix 2011-08-26 18:19 ` Jan Kiszka 2011-08-26 18:37 ` Gilles Chanteperdrix 2011-08-26 15:34 ` Philippe Gerum 2011-08-29 23:00 ` Alexis Berlemont 2011-08-30 11:05 ` Gilles Chanteperdrix 2011-08-30 18:53 ` Julien Delange
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.