From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
linux-kernel@vger.kernel.org, Ingo Molnar <mingo@elte.hu>,
Andrew Morton <akpm@linux-foundation.org>,
Thomas Gleixner <tglx@linutronix.de>,
Peter Zijlstra <peterz@infradead.org>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Lai Jiangshan <laijs@cn.fujitsu.com>,
Li Zefan <lizf@cn.fujitsu.com>,
Masami Hiramatsu <mhiramat@redhat.com>,
Christoph Hellwig <hch@lst.de>
Subject: Re: [PATCH 2/9 - v2][RFC] tracing: Let tracepoints have data?passed to tracepoint callbacks
Date: Fri, 7 May 2010 11:08:38 -0400 [thread overview]
Message-ID: <20100507150838.GB30356@Krystal> (raw)
In-Reply-To: <1273244123.22438.140.camel@gandalf.stny.rr.com>
* Steven Rostedt (rostedt@goodmis.org) wrote:
> On Fri, 2010-05-07 at 10:39 -0400, Mathieu Desnoyers wrote:
> > * Steven Rostedt (rostedt@goodmis.org) wrote:
> > >
> > >
> > > "Frederic Weisbecker" <fweisbec@gmail.com> wrote:
> > >
> > > >On Mon, May 03, 2010 at 11:40:47PM -0400, Steven Rostedt wrote:
> > [...]
> > > >>
> > > >> diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
> > > >> index 78b4bd3..ee8059a 100644
> > > >> --- a/include/linux/tracepoint.h
> > > >> +++ b/include/linux/tracepoint.h
> > > >> @@ -20,12 +20,17 @@
> > > >> struct module;
> > > >> struct tracepoint;
> > > >>
> > > >> +struct tracepoint_func {
> > > >> + void *func;
> > > >> + void *data;
> > > >> +};
> > > >> +
> > > >> struct tracepoint {
> > > >> const char *name; /* Tracepoint name */
> > > >> int state; /* State. */
> > > >> void (*regfunc)(void);
> > > >> void (*unregfunc)(void);
> > > >> - void **funcs;
> > > >> + struct tracepoint_func *funcs;
> > > >> } __attribute__((aligned(32))); /*
> > > >> * Aligned on 32 bytes because it is
> > > >> * globally visible and gcc happily
> > > >> @@ -46,14 +51,18 @@ struct tracepoint {
> > > >> */
> > > >> #define __DO_TRACE(tp, proto, args) \
> > > >> do { \
> > > >> - void **it_func; \
> > > >> + struct tracepoint_func *it_func_ptr; \
> > > >> + void *it_func; \
> > > >> + void *__data; \
> > > >> \
> > > >> rcu_read_lock_sched_notrace(); \
> > > >> - it_func = rcu_dereference_sched((tp)->funcs); \
> > > >> - if (it_func) { \
> > > >> + it_func_ptr = rcu_dereference_sched((tp)->funcs); \
> > > >> + if (it_func_ptr) { \
> > > >> do { \
> > > >> - ((void(*)(proto))(*it_func))(args); \
> > > >> - } while (*(++it_func)); \
> > > >> + it_func = (it_func_ptr)->func; \
> > > >> + __data = (it_func_ptr)->data; \
> > > >> + ((void(*)(proto))(it_func))(args); \
> > > >
> > > >
> > > >So, we had a talk about this and we concluded that it is probably fine
> > > >on every archs to push one more argument than needed in a function.
> > > >
> > >
> > > Yeah, I'm hoping it's fine.
> >
> > How about changing the callback prototypes to match the call arguments (changing
> > the type expected in register/unregister_trace, as well as an additional "check
> > type" that I proposed for Ftrace) ?
>
> This can not happen!!!! As I said before, the register is done in C,
> there is no macro that will help here. We create the call back with the
> macro, but the registering is in kernel/trace/trace_events.c. One
> register for ___ALL___ events!!!
>
> Thus there is no check.
>
> Understand this yet?
Clearly understood. I was referring to add a static inline
check_trace_##name##_callback_type(...) { } call within the callbacks you
generate. It generates no code and adds compiler type-checking (rather than
relying on CPP macro correctness for type-correctness).
>
>
> >
> > Otherwise, you basically expect here that:
> >
> > void fct(void *foo, void *bar, etc etc) (N parameters expected)
> > {
> >
> > }
> >
> > called by:
> >
> > fct(foo, bar, etc etc, foobar) (N + 1 parameters)
> >
> > will always work.
> >
> > Can you show me where the C standard says it is safe to do so ?
>
> No, but it seems safe in the kernel ;-)
The use of "seems" here does not give me a warm feeling of safety. ;)
>
> But that said. There is another option that will conform to this, and
> that is to add flags to registering tracepoints. I already wrote a patch
> for this in trying to do some other work (that I threw away).
>
>
> So here's the proposal.
>
> Change struct tracepoint_func to...
>
> struct tracepoint_func {
> void *func;
> void *data;
> unsigned int flags;
> };
>
>
> The flags is set when registered. If a function is registered with data,
> then the flags field will be set. Then the calling of the function can
> be:
>
> if ((it_func_ptr)->flags & TP_FL_DATA)
> ((void(*)(proto, void *))(it_func)(args, __data);
> else
> ((void(*)(proto))(it_func)(args);
>
> This would comply with the C standard.
This would also add a branch on the tracing fast path, which I would like to
avoid. Why can't we simply change all prototypes to take an extra void *__data
parameter instead ?
Thanks,
Mathieu
>
> -- Steve
>
>
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
next prev parent reply other threads:[~2010-05-07 15:08 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-07 12:40 [PATCH 2/9 - v2][RFC] tracing: Let tracepoints have data passed to tracepoint callbacks Steven Rostedt
2010-05-07 14:39 ` [PATCH 2/9 - v2][RFC] tracing: Let tracepoints have data?passed " Mathieu Desnoyers
2010-05-07 14:55 ` Steven Rostedt
2010-05-07 15:08 ` Mathieu Desnoyers [this message]
2010-05-07 15:15 ` Steven Rostedt
2010-05-07 15:30 ` Mathieu Desnoyers
2010-05-07 15:45 ` Steven Rostedt
-- strict thread matches above, loose matches on Subject: below --
2010-05-04 3:40 [PATCH 0/9 - v2][RFC] tracing: Lowering the footprint of TRACE_EVENTs Steven Rostedt
2010-05-04 3:40 ` [PATCH 2/9 - v2][RFC] tracing: Let tracepoints have data passed to tracepoint callbacks Steven Rostedt
2010-05-07 3:52 ` Frederic Weisbecker
2010-05-07 14:09 ` Steven Rostedt
2010-05-07 18:06 ` Frederic Weisbecker
2010-05-07 19:10 ` Steven Rostedt
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=20100507150838.GB30356@Krystal \
--to=mathieu.desnoyers@efficios.com \
--cc=acme@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=hch@lst.de \
--cc=laijs@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizf@cn.fujitsu.com \
--cc=mhiramat@redhat.com \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox