From: Jan Kiszka <jan.kiszka@domain.hid>
To: rpm@xenomai.org
Cc: xenomai-core <xenomai@xenomai.org>
Subject: Re: [Xenomai-core] [PATCH] provide ipipe_traceing via nucleus interface
Date: Fri, 23 Jun 2006 11:27:06 +0200 [thread overview]
Message-ID: <449BB3EA.70807@domain.hid> (raw)
In-Reply-To: <1151046221.4438.16.camel@domain.hid>
Philippe Gerum wrote:
> On Thu, 2006-06-22 at 12:54 +0200, Jan Kiszka wrote:
>> Hi,
>>
>> having to load xeno_timerbench and to open its device just for
>> triggering the I-pipe tracer was not a smart decision of mine. This
>> patch makes is more comfortable to call the tracer from user space.
>
>> Index: include/asm-generic/syscall.h
>> ===================================================================
>> --- include/asm-generic/syscall.h (Revision 1252)
>> +++ include/asm-generic/syscall.h (Arbeitskopie)
>> @@ -30,6 +30,13 @@
>> #define __xn_sys_info 4 /* xnshadow_get_info(muxid,&info) */
>> #define __xn_sys_arch 5 /* r = xnarch_local_syscall(args) */
>>
>> +#define __xn_sys_trace_begin 6 /* ipipe_trace_begin(v) */
>> +#define __xn_sys_trace_end 7 /* ipipe_trace_end(v) */
>> +#define __xn_sys_trace_freeze 8 /* ipipe_trace_freeze(v) */
>> +#define __xn_sys_trace_specl 9 /*
> ipipe_trace_special(special_id, v) */
>> +#define __xn_sys_trace_mreset 10 /* ipipe_trace_max_reset() */
>> +#define __xn_sys_trace_freset 11 /* ipipe_trace_frozen_reset() */
>> +
>
> Ok for providing a tracer syscall from the nucleus table, but let's
> not pollute the namespace uselessly. We could just have a single
> tracer entry point, using the first arg as a function code for begin,
> end, freeze etc. Given that those ops are not on the fast path, there
> is nothing to gain in having them as separate calls. See __xn_sys_arch
> for ARM.
Ok, will change.
>
>>
>> Index: include/nucleus/ipipe_trace.h
>> ===================================================================
>
> This file should go to include/asm-generic/ since it depends on the
> underlying real-time enabler (i.e. I-pipe). This way, there would be
> no need to check for __XENO_SIM__.
Ok, but how is the user supposed to include the API then? Or can we drag
it in implicitly somehow? That would be even nicer I think.
>
>> --- include/nucleus/ipipe_trace.h (Revision 0)
>> +++ include/nucleus/ipipe_trace.h (Revision 0)
>> @@ -0,0 +1,82 @@
>> +/*
>> Index: src/testsuite/latency/latency.c
>> ===================================================================
>> --- src/testsuite/latency/latency.c (Revision 1252)
>> +++ src/testsuite/latency/latency.c (Arbeitskopie)
>> @@ -12,6 +12,7 @@
>> #include <native/timer.h>
>> #include <native/sem.h>
>> #include <rtdm/rttesting.h>
>> +#include <nucleus/ipipe_trace.h>
>>
>> RT_TASK latency_task, display_task;
>>
>> @@ -130,8 +131,7 @@ void latency (void *cookie)
>>
>> if (freeze_max && (dt > gmaxjitter) && !(finished ||
> warmup))
>> {
>> - rt_dev_ioctl(benchdev, RTBNCH_RTIOC_REFREEZE_TRACE,
>> - rt_timer_tsc2ns(dt));
>> + ipipe_trace_refreeze(rt_timer_tsc2ns(dt));
>
> I don't like the idea of spreading ipipe-something symbols and
> dependancies all over the entire source code including the generic one,
> especially when considering that at some point, we are going to have
> preempt-rt as the other possible real-time enabler, like
> Adeos is already used now. We should use something more generic.
> "tracer*" would be ok, I guess.
>
I'm going to rescan Ingo's API to define a common interface where
feasible (their own user space API seems to hide behind gettimeofday).
BTW, looks like that tracer will not make into mainline soon - I noticed
no further pushing recently.
Jan
next prev parent reply other threads:[~2006-06-23 9:27 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-22 10:54 [Xenomai-core] [PATCH] provide ipipe_traceing via nucleus interface Jan Kiszka
2006-06-23 7:03 ` Philippe Gerum
2006-06-23 9:27 ` Jan Kiszka [this message]
2006-06-23 9:44 ` Philippe Gerum
2006-06-23 11:19 ` 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=449BB3EA.70807@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.