From: Ingo Molnar <mingo@elte.hu>
To: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [RFC v3][PATCH 0/2] Make ftrace able to trace function return
Date: Tue, 11 Nov 2008 10:43:12 +0100 [thread overview]
Message-ID: <20081111094312.GA16496@elte.hu> (raw)
In-Reply-To: <49191C31.1050402@gmail.com>
* Frederic Weisbecker <fweisbec@gmail.com> wrote:
> This patchset adds the ability for ftrace to trace the function even
> on call time and on return time. So we can now measure the time of
> execution of the most part of the functions inside the kernel with
> ftrace.
>
> The first patch bring the low level tools to add the support of
> return tracing on X86-32. It is totally separated from the
> traditional implementation of ftrace and doesn't support dynamic
> ftrace at this time.
>
> The second patch adds a tracer based on the ring-buffer which
> measure the time of execution of the functions inside the kernel.
okay, i've created tip/tracing/function-return-tracer topic so that we
can start testing this for real and do can start iterating it via
smaller changes. I've also integrated it into tip/master, it's looking
good so far.
i did a couple of cleanups straight away:
1) i did a FTRACE_RETURN => FUNCTION_RET_TRACER rename, to move it in
line with the function tracer
2) i cleaned up the arch/x86/Kconfig impact:
f1c4be5: tracing, x86: clean up FUNCTION_RET_TRACER Kconfig
the return-tracer builds and boots, and works fabulously:
# cd /sys/debug/tracing/
# cat available_tracers
return function sched_switch nop
# echo return > current_tracer
clocksource_read+0xd/0xf -> acpi_pm_read (1547 ns)
getnstimeofday+0x3e/0xc8 -> clocksource_read (1951 ns)
ktime_get_ts+0x25/0x49 -> getnstimeofday (2354 ns)
ktime_get_ts+0x45/0x49 -> set_normalized_timespec (120 ns)
Small quirk, it does not seem possible to switch from ftrace to
ftrace-ret:
# echo ftrace > current_tracer
# echo return > current_tracer
bash: echo: write error: Invalid argument
i have to go via the "nop" tracer for this to work. Steve: switching
between tracer plugins should be seemless.
Question: have you thought about extending the return-tracer to
dyn-function-tracer?
That's where it will really shine: the dftrace workflow is to
typically enable a low number of functions - and there the
return-tracing overhead does not show up nearly as much as in the
static-function-tracing workflow.
Another suggestion: i think the "return" plugin name is confusing to
users (it confused me when i first saw it listed in
available_tracers).
So lets use "function_full" and "function" tracing perhaps? The "full"
tracer is what traces both entry and exit points, and establishes full
function-call timings/costs. The "function" tracer is more lightweight
and traces function entry events.
Ingo
next prev parent reply other threads:[~2008-11-11 9:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-11 5:46 [RFC v3][PATCH 0/2] Make ftrace able to trace function return Frederic Weisbecker
2008-11-11 9:43 ` Ingo Molnar [this message]
2008-11-11 10:12 ` [PATCH] tracing, x86: function return tracer, fix assembly constraints Ingo Molnar
2008-11-11 11:04 ` [PATCH] tracing: function return tracer, build fix Ingo Molnar
2008-11-11 15:30 ` [RFC v3][PATCH 0/2] Make ftrace able to trace function return Frédéric Weisbecker
2008-11-11 17:14 ` Ingo Molnar
2008-11-11 17:24 ` Frédéric Weisbecker
2008-11-11 18:43 ` Ingo Molnar
2008-11-11 19:14 ` Frédéric Weisbecker
2008-11-12 20:44 ` Frank Ch. Eigler
2008-11-13 0:10 ` Frédéric 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=20081111094312.GA16496@elte.hu \
--to=mingo@elte.hu \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.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