From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Ingo Molnar <mingo@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>,
Frederic Weisbecker <fweisbec@gmail.com>
Subject: [for-next][PATCH 00/20] tracing: function triggers, stack tracer fixes, clocks and documenation
Date: Fri, 15 Mar 2013 15:39:35 -0400 [thread overview]
Message-ID: <20130315193935.359219613@goodmis.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 3341 bytes --]
Here's another set of patches.
Mostly I updated the function triggers. You know the kind:
echo bad_area_nosemaphore:traceoff > set_ftrace_filter
I cleaned up the code and also added a few more triggers.
What we already had was just traceon and traceoff. These turn on and
off tracing when a function is hit.
What was added was:
snapshot: Take a snapshot of the buffer (swap buffers with the live
and "snapshot" buffer) when a function is hit. Note, it
will not snapshot in an NMI.
stacktrace: Write the current kernel stacktrace into the ring buffer.
enable_event: Enable a specified event to start tracing.
disable_event: Have a specified event to stop tracing.
I also added two new trace_clocks:
uptime - counts jiffies since boot up and reports in nanoseconds.
perf - uses perf's local_clock(). This will help later when
perf can read ftrace buffers and can interleave them.
Finally, I updated Documentation/trace/ftrace.txt to reflect all these
changes, as well as changes that have been done since it was last updated.
That file was suffering from some major bit rot.
I'll keep these in linux-next for a while before doing my pull request
to Ingo.
Enjoy,
-- Steve
Steven Rostedt (Red Hat) (20):
tracing: Consolidate updating of count for traceon/off
tracing: Consolidate ftrace_trace_onoff_unreg() into callback
ftrace: Separate unlimited probes from count limited probes
ftrace: Fix function probe to only enable needed functions
tracing: Add alloc/free_snapshot() to replace duplicate code
tracing: Add snapshot trigger to function probes
tracing: Fix comments for ftrace_event_file/call flags
ftrace: Clean up function probe methods
ftrace: Use manual free after synchronize_sched() not call_rcu_sched()
tracing: Add a way to soft disable trace events
tracing: Add function probe triggers to enable/disable events
tracing: Add skip argument to trace_dump_stack()
tracing: Add function probe to trigger stack traces
tracing: Use stack of calling function for stack tracer
tracing: Fix stack tracer with fentry use
tracing: Remove most or all of stack tracer stack size from stack_max_size
tracing: Add function-trace option to disable function tracing of latency tracers
tracing: Add "uptime" trace clock that uses jiffies
tracing: Add "perf" trace_clock
tracing: Bring Documentation/trace/ftrace.txt up to date
----
Documentation/trace/ftrace.txt | 2097 ++++++++++++++++++++++++++-----------
include/linux/ftrace.h | 6 +-
include/linux/ftrace_event.h | 37 +-
include/linux/kernel.h | 2 +-
include/linux/trace_clock.h | 1 +
include/trace/ftrace.h | 8 +
kernel/trace/ftrace.c | 73 +-
kernel/trace/trace.c | 208 +++-
kernel/trace/trace.h | 1 +
kernel/trace/trace_clock.c | 10 +
kernel/trace/trace_events.c | 354 ++++++-
kernel/trace/trace_functions.c | 199 +++-
kernel/trace/trace_irqsoff.c | 67 +-
kernel/trace/trace_sched_wakeup.c | 63 +-
kernel/trace/trace_stack.c | 74 +-
15 files changed, 2418 insertions(+), 782 deletions(-)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 490 bytes --]
next reply other threads:[~2013-03-15 19:55 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-15 19:39 Steven Rostedt [this message]
2013-03-15 19:39 ` [for-next][PATCH 01/20] tracing: Consolidate updating of count for traceon/off Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 02/20] tracing: Consolidate ftrace_trace_onoff_unreg() into callback Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 03/20] ftrace: Separate unlimited probes from count limited probes Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 04/20] ftrace: Fix function probe to only enable needed functions Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 05/20] tracing: Add alloc/free_snapshot() to replace duplicate code Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 06/20] tracing: Add snapshot trigger to function probes Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 07/20] tracing: Fix comments for ftrace_event_file/call flags Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 08/20] ftrace: Clean up function probe methods Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 09/20] ftrace: Use manual free after synchronize_sched() not call_rcu_sched() Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 10/20] tracing: Add a way to soft disable trace events Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 11/20] tracing: Add function probe triggers to enable/disable events Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 12/20] tracing: Add skip argument to trace_dump_stack() Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 13/20] tracing: Add function probe to trigger stack traces Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 14/20] tracing: Use stack of calling function for stack tracer Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 15/20] tracing: Fix stack tracer with fentry use Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 16/20] tracing: Remove most or all of stack tracer stack size from stack_max_size Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 17/20] tracing: Add function-trace option to disable function tracing of latency tracers Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 18/20] tracing: Add "uptime" trace clock that uses jiffies Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 19/20] tracing: Add "perf" trace_clock Steven Rostedt
2013-03-15 19:39 ` [for-next][PATCH 20/20] tracing: Bring Documentation/trace/ftrace.txt up to date 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=20130315193935.359219613@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.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