From: Frederic Weisbecker <fweisbec@gmail.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: Li Zefan <lizf@cn.fujitsu.com>, Ingo Molnar <mingo@elte.hu>,
Christoph Hellwig <hch@infradead.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 1/2] tracing/events: put TP_fast_assign into braces
Date: Mon, 1 Jun 2009 15:16:33 +0200 [thread overview]
Message-ID: <20090601131631.GB6000@nowhere> (raw)
In-Reply-To: <alpine.DEB.2.00.0906010911370.14994@gandalf.stny.rr.com>
On Mon, Jun 01, 2009 at 09:11:52AM -0400, Steven Rostedt wrote:
>
>
>
> On Mon, 1 Jun 2009, Li Zefan wrote:
>
> > Currently TP_fast_assin has a limitation that we can't define local
> > variables in it.
> >
> > Here's one use case when we introduce __dynamic_array():
> >
> > TP_fast_assign(
> > type *p = __get_dynamic_array(item);
> >
> > foo(p);
> > bar(p);
> > ),
> >
> > [ Impact: allow defining local variables in TP_fast_assign ]
> >
> > Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
>
> Thanks Li,
>
> I'll pull it in.
>
> -- Steve
Hi Steve,
Note, they depend on the following patch:
tracing/events: fix a typo in __string() format output
You can pick it from:
git://git.kernel.org/pub/scm/linux/kernel/git/frederic/random-tracing.git
tracing/core
Thanks!
> > ---
> > include/trace/ftrace.h | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/include/trace/ftrace.h b/include/trace/ftrace.h
> > index 9276ec4..ee92682 100644
> > --- a/include/trace/ftrace.h
> > +++ b/include/trace/ftrace.h
> > @@ -471,7 +471,7 @@ static void ftrace_raw_event_##call(proto) \
> > return; \
> > entry = ring_buffer_event_data(event); \
> > \
> > - assign; \
> > + { assign; } \
> > \
> > if (!filter_current_check_discard(event_call, entry, event)) \
> > trace_nowake_buffer_unlock_commit(event, irq_flags, pc); \
> > --
> > 1.5.4.rc3
> >
> >
> >
next prev parent reply other threads:[~2009-06-01 13:16 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-06-01 7:35 [PATCH 1/2] tracing/events: put TP_fast_assign into braces Li Zefan
2009-06-01 7:35 ` [PATCH 2/2] tracing/events: introduce __dynamic_array() Li Zefan
2009-06-01 8:30 ` Christoph Hellwig
2009-06-01 13:12 ` Steven Rostedt
2009-06-01 16:36 ` Frederic Weisbecker
2009-06-04 12:04 ` [tip:tracing/core] " tip-bot for Li Zefan
2009-06-01 8:29 ` [PATCH 1/2] tracing/events: put TP_fast_assign into braces Christoph Hellwig
2009-06-01 13:11 ` Steven Rostedt
2009-06-01 13:16 ` Frederic Weisbecker [this message]
2009-06-04 12:04 ` [tip:tracing/core] " tip-bot for Li Zefan
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=20090601131631.GB6000@nowhere \
--to=fweisbec@gmail.com \
--cc=hch@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lizf@cn.fujitsu.com \
--cc=mingo@elte.hu \
--cc=rostedt@goodmis.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox