diff options
author | Steven Rostedt <srostedt@redhat.com> | 2008-12-03 15:36:57 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-04 03:09:34 -0500 |
commit | ea4e2bc4d9f7370e57a343ccb5e7c0ad3222ec3c (patch) | |
tree | 64a4a1d9d7d3de0695cb2e8c7161886ab660e311 /kernel/trace/trace.h | |
parent | b29144c317fb748dae6d72c0f88eda9d43165b8d (diff) |
ftrace: graph of a single function
This patch adds the file:
/debugfs/tracing/set_graph_function
which can be used along with the function graph tracer.
When this file is empty, the function graph tracer will act as
usual. When the file has a function in it, the function graph
tracer will only trace that function.
For example:
# echo blk_unplug > /debugfs/tracing/set_graph_function
# cat /debugfs/tracing/trace
[...]
------------------------------------------
| 2) make-19003 => kjournald-2219
------------------------------------------
2) | blk_unplug() {
2) | dm_unplug_all() {
2) | dm_get_table() {
2) 1.381 us | _read_lock();
2) 0.911 us | dm_table_get();
2) 1. 76 us | _read_unlock();
2) + 12.912 us | }
2) | dm_table_unplug_all() {
2) | blk_unplug() {
2) 0.778 us | generic_unplug_device();
2) 2.409 us | }
2) 5.992 us | }
2) 0.813 us | dm_table_put();
2) + 29. 90 us | }
2) + 34.532 us | }
You can add up to 32 functions into this file. Currently we limit it
to 32, but this may change with later improvements.
To add another function, use the append '>>':
# echo sys_read >> /debugfs/tracing/set_graph_function
# cat /debugfs/tracing/set_graph_function
blk_unplug
sys_read
Using the '>' will clear out the function and write anew:
# echo sys_write > /debug/tracing/set_graph_function
# cat /debug/tracing/set_graph_function
sys_write
Note, if you have function graph running while doing this, the small
time between clearing it and updating it will cause the graph to
record all functions. This should not be an issue because after
it sets the filter, only those functions will be recorded from then on.
If you need to only record a particular function then set this
file first before starting the function graph tracer. In the future
this side effect may be corrected.
The set_graph_function file is similar to the set_ftrace_filter but
it does not take wild cards nor does it allow for more than one
function to be set with a single write. There is no technical reason why
this is the case, I just do not have the time yet to implement that.
Note, dynamic ftrace must be enabled for this to appear because it
uses the dynamic ftrace records to match the name to the mcount
call sites.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r-- | kernel/trace/trace.h | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 0565ae9a2210..41f026bfc9ed 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -505,13 +505,41 @@ extern unsigned long trace_flags; | |||
505 | /* Standard output formatting function used for function return traces */ | 505 | /* Standard output formatting function used for function return traces */ |
506 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | 506 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
507 | extern enum print_line_t print_graph_function(struct trace_iterator *iter); | 507 | extern enum print_line_t print_graph_function(struct trace_iterator *iter); |
508 | |||
509 | #ifdef CONFIG_DYNAMIC_FTRACE | ||
510 | /* TODO: make this variable */ | ||
511 | #define FTRACE_GRAPH_MAX_FUNCS 32 | ||
512 | extern int ftrace_graph_count; | ||
513 | extern unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS]; | ||
514 | |||
515 | static inline int ftrace_graph_addr(unsigned long addr) | ||
516 | { | ||
517 | int i; | ||
518 | |||
519 | if (!ftrace_graph_count || test_tsk_trace_graph(current)) | ||
520 | return 1; | ||
521 | |||
522 | for (i = 0; i < ftrace_graph_count; i++) { | ||
523 | if (addr == ftrace_graph_funcs[i]) | ||
524 | return 1; | ||
525 | } | ||
526 | |||
527 | return 0; | ||
528 | } | ||
508 | #else | 529 | #else |
530 | static inline int ftrace_trace_addr(unsigned long addr) | ||
531 | { | ||
532 | return 1 | ||
533 | } | ||
534 | #endif /* CONFIG_DYNAMIC_FTRACE */ | ||
535 | |||
536 | #else /* CONFIG_FUNCTION_GRAPH_TRACER */ | ||
509 | static inline enum print_line_t | 537 | static inline enum print_line_t |
510 | print_graph_function(struct trace_iterator *iter) | 538 | print_graph_function(struct trace_iterator *iter) |
511 | { | 539 | { |
512 | return TRACE_TYPE_UNHANDLED; | 540 | return TRACE_TYPE_UNHANDLED; |
513 | } | 541 | } |
514 | #endif | 542 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
515 | 543 | ||
516 | /* | 544 | /* |
517 | * trace_iterator_flags is an enumeration that defines bit | 545 | * trace_iterator_flags is an enumeration that defines bit |