From: Frederic Weisbecker <fweisbec@gmail.com>
To: Ingo Molnar <mingo@elte.hu>
Cc: LKML <linux-kernel@vger.kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Peter Zijlstra <peterz@infradead.org>,
Li Zefan <lizf@cn.fujitsu.com>, Jason Baron <jbaron@redhat.com>,
Masami Hiramatsu <mhiramat@redhat.com>
Subject: Re: [PATCH 0/2 v3] tracing: Tracing event profiling updates
Date: Sat, 19 Sep 2009 10:03:21 +0200 [thread overview]
Message-ID: <20090919080320.GC5226@nowhere> (raw)
In-Reply-To: <20090919073400.GE15292@elte.hu>
On Sat, Sep 19, 2009 at 09:34:00AM +0200, Ingo Molnar wrote:
>
> * Frederic Weisbecker <fweisbec@gmail.com> wrote:
>
> >
> > Ingo,
> >
> > Hopefully this is my last attempt.
> > This new iteration fixes the syscalls events to correctly handle
> > the buffer. In the previous version, they did not care about interrupts.
> >
> > I only resend the second patch as only this one has changed since the v2.
> >
> > The new branch is in:
> > git://git.kernel.org/pub/scm/linux/kernel/git/frederic/random-tracing.git
> > tracing/core-v3
> >
> > Thanks,
> > Frederic.
> >
> > Frederic Weisbecker (2):
> > tracing: Factorize the events profile accounting
> > tracing: Allocate the ftrace event profile buffer dynamically
> >
> > include/linux/ftrace_event.h | 10 +++-
> > include/linux/syscalls.h | 24 +++-----
> > include/trace/ftrace.h | 111 ++++++++++++++++++++---------------
> > kernel/trace/trace_event_profile.c | 79 +++++++++++++++++++++++++-
> > kernel/trace/trace_syscalls.c | 97 +++++++++++++++++++++++++------
> > 5 files changed, 234 insertions(+), 87 deletions(-)
>
> Hm, the naming is quite confusing here i think:
>
> -132,8 +133,12 @@ struct ftrace_event_call {
> atomic_t profile_count;
> int (*profile_enable)(void);
> void (*profile_disable)(void);
> + char *profile_buf;
> + char *profile_buf_nmi;
>
> These are generic events, not just 'profiling' histograms.
>
> Generic events can have _many_ output modi:
>
> - SVGs (perf timeline)
> - histograms (perf report)
> - traces (perf trace)
> - summaries / maximums (perf sched lat)
> - maps (perf sched map)
> - graphs (perf report --call-graph)
>
> So it's quite a misnomer to talk just about profiling here. This is an
> event record buffer.
Agreed, I guess we can call the perf_event_buf/perf_event_nmi.
Also may be the profile_enable/profile_disable should follow the
renaming logic.
> Also, what is the currently maximum possible size of ->profile_buf? The
> max size of an event record? The new codepath looks a bit heavy with
> rcu-lock/unlock and other bits put inbetween - and this is now in the
> event sending critical path. Cannot we do a permanent buffer that needs
> no extra locking/reference protection?
>
> Is the whole thing even justified? I mean, we keep the size of records
> low anyway. It's a _lot_ easier to handle on-stack records, they are the
> ideal (and very fast) dynamic allocator which is NMI and IRQ safe, etc.
>
> Ingo
The max size of an event is undefined once it uses either
a __dynamic_array() or __string() field. (The latter is a subset
of the former anyway).
Those are very special fields that can handle dynamic size arrays.
That makes such events having an unpredictable size each time they
are triggered.
That said, we are currently using a stack based buffer. That coupled
with the unpredicatble event size must really be fixed. I mean, we don't
want to run out of the stack boundaries once an event get a long string,
once a new large event is added, or once an event is randomly triggered
in a path where the stack is already deeply dug.
I've done this easy stack based as a first shot to support ftrace raw
events by perf, but now this becomes something that needs to be fixed
IMO.
I've made this rcu based thing to avoid wasting the buffer in memory
(for each cpu) while we are not profiling the raw events.
I could drop that and keep these buffers static, but this seems
wasteful wrt memory footprint while profiling/tracing is inactive.
next prev parent reply other threads:[~2009-09-19 8:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-18 1:33 [PATCH 0/2] tracing: Tracing event profiling updates Frederic Weisbecker
2009-09-18 1:33 ` [PATCH 1/2] tracing: Factorize the events profile accounting Frederic Weisbecker
2009-09-18 2:15 ` Steven Rostedt
2009-09-18 3:45 ` Li Zefan
2009-09-18 1:33 ` [PATCH 2/2] tracing: Allocate the ftrace event profile buffer dynamically Frederic Weisbecker
2009-09-18 2:15 ` Steven Rostedt
2009-09-18 2:23 ` Frederic Weisbecker
2009-09-18 4:24 ` [PATCH 0/2 v2] tracing: Tracing event profiling updates Frederic Weisbecker
2009-09-18 5:36 ` [PATCH 0/2 v3] " Frederic Weisbecker
2009-09-19 7:34 ` Ingo Molnar
2009-09-19 8:03 ` Frederic Weisbecker [this message]
2009-09-18 5:36 ` [PATCH 2/2 v3] tracing: Allocate the ftrace event profile buffer dynamically Frederic Weisbecker
2009-09-18 4:24 ` [PATCH 1/2] tracing: Factorize the events profile accounting Frederic Weisbecker
2009-09-18 4:24 ` [PATCH 2/2] tracing: Allocate the ftrace event profile buffer dynamically Frederic Weisbecker
2009-09-18 4:31 ` Frederic Weisbecker
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=20090919080320.GC5226@nowhere \
--to=fweisbec@gmail.com \
--cc=jbaron@redhat.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 \
/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