* Re: [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT
2008-05-06 16:06 [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT Karl Reichert
@ 2008-05-06 16:16 ` Gilles Chanteperdrix
2008-05-06 17:27 ` Jan Kiszka
2008-05-06 19:19 ` Wolfgang Denk
2 siblings, 0 replies; 4+ messages in thread
From: Gilles Chanteperdrix @ 2008-05-06 16:16 UTC (permalink / raw)
To: Karl Reichert; +Cc: xenomai
On Tue, May 6, 2008 at 6:06 PM, Karl Reichert <Karl-Trampe@domain.hid> wrote:
> Hello all,
Hi, I do not want to discuss about this issue, since I feel others
will do it better than me. However, I think you are wrong about what
you say are advantages of PREEMPT_RT over Xenomai:
> 2) There is only one API to use. No matter if you are creating a program as real time task or not, you can use the same API.
If you use Xenomai Posix API, you get the same thing with Xenomai.
> 3) One can use CPU isolation on dual core machines, making one core running only real time tasks and the other the rest.
You can do the same thing with Xenomai
--
Gilles
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT
2008-05-06 16:06 [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT Karl Reichert
2008-05-06 16:16 ` Gilles Chanteperdrix
@ 2008-05-06 17:27 ` Jan Kiszka
2008-05-06 19:19 ` Wolfgang Denk
2 siblings, 0 replies; 4+ messages in thread
From: Jan Kiszka @ 2008-05-06 17:27 UTC (permalink / raw)
To: Karl Reichert; +Cc: xenomai
[-- Attachment #1: Type: text/plain, Size: 4482 bytes --]
Karl Reichert wrote:
> Hello all,
>
> I'm currently reading some documents about (standard) linux kernel 2.6.23 and it's latest changes. I saw, that it has high resolution timers available, which can reduce interrupt latency a lot. It's said that they also reduced critical sections occurence and their duration, all in all bringing linux closer to real time requirements.
>
> I also checked the real time patches of Ingo Molnar and Thomas Gleixner (CONFIG_PREEMPT_RT) and the wiki [1] states, that their patches are replacing most kernel spinlocks with mutexes that support priority inheritance, as well as moving all interrupt and software interrupts to kernel threads. Latency tests state times of 24us for a Pentium 4, 2.8 GHz with their patches applied. [2], [3]
>
> I see a lot of advantages from this solution:
> 1) As their patches do have a good chance to be included in linux kernel in future, one doesn't has to patch anymore the kernel to get real time behavoir.
The right tool for the right purpose: -rt serves about 80-90% of
real-time use cases (starting with soft RT, ending with "hard" RT, up to
a certain degree). Once -rt is mainline (chances fell again that this
may happen this year, I would currently see it in 2009), you should have
an easier time setting up the kernel - but that's only one part of the
full story.
> 2) There is only one API to use. No matter if you are creating a program as real time task or not, you can use the same API.
Someone (no names here ;) ) recently told me: "Actually, I would prefer
to use -RT, because Xenomai will probably tell me how broken (from RT
POV) my application is." :)
In other words: If you have strict RT requirements, you have to design
your application very carefully anyway. In that case the "we make
everything RT" approach of -rt can be counterproductive (it cannot
fulfill that promise, but it doesn't tell you immediately). In contrast,
the dual scheduler of Xenomai provides clear separation and communicates
this to the application (when being asked for).
In case you can live with some uncertainty if all invoked services
always behave like they do under test conditions, then working against
-rt can be more comfortable, no questions.
> 3) One can use CPU isolation on dual core machines, making one core running only real time tasks and the other the rest.
Also here: Beware of traps and pitfalls! If you follow recent CPU
isolation discussion on LKML, you'll find the missing pieces of mainline
(and -rt) for full isolation.
> 4) As they don't use anything like nucleus, there is less overhead.
Depends. The logic required to apply sleeping locks with priority
inheritance to wide parts of the kernel is far from being trivial or
light-weight. Recently, some patches with benchmarks popped up to reduce
the "collateral damage" of this conversions (noticeable I/O slowdown -
of course only relevant if you do noticeable Linux I/O in parallel to
your RT load). On the other hand, having only one scheduler, keeps
caches warmer and can compensate for some of the downsides if you have a
high context switch rate.
However, to my experience, Xenomai provides better RT (worst case)
performance, generally no longer orders of magnitude better (unless -rt
runs into problems), but measurable. But the precise difference is
highly platform dependent, surely not generalizable from "big honking"
server boxes down to few-10-MHz embedded processors.
>
> These are the thoughts running through my mind at the moment. I would like to discuss these with you. What do you think about this? Where do you see pros and contras for xenomai / CONFIG_PREEMPT_RT?
It all depends on _your_ requirements. Make sure you are fully aware
of them. That's easily said, but not always that easy to fulfill, I
know. If unsure: Developing against Xenomai will not cause harm to your
application design, rather the contrary. Pick POSIX as API, and you will
keep all options open for the future.
Jan
PS: All the above assumes that your kernel (-rt or Xenomai) doesn't
expose critical bugs in your scenario. You can always run into
situations where unfixed bugs stop you from using A or B. E.g, we had to
drop -rt from further consideration for now as neither we nor the
community was able to understand or fix the show-stopping issues we
found on our boxes. Also Xenomai ran into bugs, but so far only fixable
or "work-around-able" ones.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 254 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT
2008-05-06 16:06 [Xenomai-help] Pros/Contras Xenomai - CONFIG_PREEMPT_RT Karl Reichert
2008-05-06 16:16 ` Gilles Chanteperdrix
2008-05-06 17:27 ` Jan Kiszka
@ 2008-05-06 19:19 ` Wolfgang Denk
2 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2008-05-06 19:19 UTC (permalink / raw)
To: Karl Reichert; +Cc: xenomai
Hello,
in message <20080506160603.216980@domain.hid> you wrote:
>
> I see a lot of advantages from this solution:
>...
> 4) As they don't use anything like nucleus, there is less overhead.
But then, PREEMPT_RT executes more code in the real-time path, and it
has measurable impact on non-RT tasks.
> These are the thoughts running through my mind at the moment. I would like to discuss these with you. What do you think about this? Where do you see pros and contras for xenomai / CONFIG_PREEMPT_RT?
My biggest concern about PREEMPT_RT is that it delivers only proba-
bilistic real-time. It is possible to write non-rt kernel code (like
some devcice drivers) which ruins RT behaviour. That means, that
maximum latencies are only known for certain hardware / software
combinations, and only by measuring the system. Any piece of code
that has not been very carefully reviewed and tested can ruin this.
Assume some control application that really requires hard real-time
responses. Let's pick an example - today I saw a sewer cleaning
vehicle which pumps water at a rate of 4,500 m³/h [1]; assume you are
to control the cut-off valve. The you want to be *really* sure that
the valve closes in time - each and every time.
Now assume it was a Linux based controller, it has a USB connector
somewhere (not so uncommon - many systems use USB storage devices to
distribute software updates or to exchange data), and one day
somebody has the idea of plugging in his USB camera.
You may end up with loading and running a device driver that has
never been tested for RT behaviour before. And with PREEMPT_RT, you
run the risk that it will impact RT performance, eventually with
serious consequences.
That's why we chose and recommend Xenomai when it comes to reliable,
guaranteed hard real time.
Another aspect: today, it is probably not so critical any more which
system you chose: please don't see Xenomai and PREEMPT_RT as two
contradicting approaches to realtime Linux. Instead, try to see it as
two independent implementations. Some parts of the community try to
bridge the gaps - RTDM has been ported to PREEMPT_RT [2], and so have
the Xenomai skins [3]. The idea is that you just write POSIX
compatible application code, which, in combination with RTDM drivers,
can be run both on Xenomai or PREEMPT_RT. That allows you to focus on
your problem domain (application development), and chose the
implementation that fits your specific needs best. Some may chose
PREEMPT_RT because they think an unpatched kernel.org tree is vitally
important to them, others chose Xenomai because they must guarantee
some deadlines. And at the cost of a recompile/link you can switch
from one configuration to the other.
[1] http://www.wiedemann-reichhardt.de/produkte/s2000det-e.htm
(Note that I'm picking an example at random. I have no idea which
sort of software they use on such vehicles.)
[2] http://www.osadl.org/?id=212
[3] http://www.denx.de/en/News/WebHome#NewsXenomaiSolo
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@domain.hid
Any sufficiently advanced bug is indistinguishable from a feature.
- Rich Kulawiec
^ permalink raw reply [flat|nested] 4+ messages in thread