diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2008-11-25 18:57:25 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-25 19:59:45 -0500 |
commit | 287b6e68ca7209caec40b2f44f837c580a413bae (patch) | |
tree | b0867d75868f6049dc5747bd39fdae2d477dde66 /kernel/trace/trace.h | |
parent | fb52607afcd0629776f1dc9e657647ceae81dd50 (diff) |
tracing/function-return-tracer: set a more human readable output
Impact: feature
This patch sets a C-like output for the function graph tracing.
For this aim, we now call two handler for each function: one on the entry
and one other on return. This way we can draw a well-ordered call stack.
The pid of the previous trace is loosely stored to be compared against
the one of the current trace to see if there were a context switch.
Without this little feature, the call tree would seem broken at
some locations.
We could use the sched_tracer to capture these sched_events but this
way of processing is much more simpler.
2 spaces have been chosen for indentation to fit the screen while deep
calls. The time of execution in nanosecs is printed just after closed
braces, it seems more easy this way to find the corresponding function.
If the time was printed as a first column, it would be not so easy to
find the corresponding function if it is called on a deep depth.
I plan to output the return value but on 32 bits CPU, the return value
can be 32 or 64, and its difficult to guess on which case we are.
I don't know what would be the better solution on X86-32: only print
eax (low-part) or even edx (high-part).
Actually it's thee same problem when a function return a 8 bits value, the
high part of eax could contain junk values...
Here is an example of trace:
sys_read() {
fget_light() {
} 526
vfs_read() {
rw_verify_area() {
security_file_permission() {
cap_file_permission() {
} 519
} 1564
} 2640
do_sync_read() {
pipe_read() {
__might_sleep() {
} 511
pipe_wait() {
prepare_to_wait() {
} 760
deactivate_task() {
dequeue_task() {
dequeue_task_fair() {
dequeue_entity() {
update_curr() {
update_min_vruntime() {
} 504
} 1587
clear_buddies() {
} 512
add_cfs_task_weight() {
} 519
update_min_vruntime() {
} 511
} 5602
dequeue_entity() {
update_curr() {
update_min_vruntime() {
} 496
} 1631
clear_buddies() {
} 496
update_min_vruntime() {
} 527
} 4580
hrtick_update() {
hrtick_start_fair() {
} 488
} 1489
} 13700
} 14949
} 16016
msecs_to_jiffies() {
} 496
put_prev_task_fair() {
} 504
pick_next_task_fair() {
} 489
pick_next_task_rt() {
} 496
pick_next_task_fair() {
} 489
pick_next_task_idle() {
} 489
------------8<---------- thread 4 ------------8<----------
finish_task_switch() {
} 1203
do_softirq() {
__do_softirq() {
__local_bh_disable() {
} 669
rcu_process_callbacks() {
__rcu_process_callbacks() {
cpu_quiet() {
rcu_start_batch() {
} 503
} 1647
} 3128
__rcu_process_callbacks() {
} 542
} 5362
_local_bh_enable() {
} 587
} 8880
} 9986
kthread_should_stop() {
} 669
deactivate_task() {
dequeue_task() {
dequeue_task_fair() {
dequeue_entity() {
update_curr() {
calc_delta_mine() {
} 511
update_min_vruntime() {
} 511
} 2813
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/trace.h')
-rw-r--r-- | kernel/trace/trace.h | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 72b5ef868765..ffe1bb1eb620 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -25,7 +25,8 @@ enum trace_type { | |||
25 | TRACE_BRANCH, | 25 | TRACE_BRANCH, |
26 | TRACE_BOOT_CALL, | 26 | TRACE_BOOT_CALL, |
27 | TRACE_BOOT_RET, | 27 | TRACE_BOOT_RET, |
28 | TRACE_FN_RET, | 28 | TRACE_GRAPH_RET, |
29 | TRACE_GRAPH_ENT, | ||
29 | TRACE_USER_STACK, | 30 | TRACE_USER_STACK, |
30 | TRACE_BTS, | 31 | TRACE_BTS, |
31 | 32 | ||
@@ -56,14 +57,16 @@ struct ftrace_entry { | |||
56 | unsigned long parent_ip; | 57 | unsigned long parent_ip; |
57 | }; | 58 | }; |
58 | 59 | ||
60 | /* Function call entry */ | ||
61 | struct ftrace_graph_ent_entry { | ||
62 | struct trace_entry ent; | ||
63 | struct ftrace_graph_ent graph_ent; | ||
64 | }; | ||
65 | |||
59 | /* Function return entry */ | 66 | /* Function return entry */ |
60 | struct ftrace_graph_entry { | 67 | struct ftrace_graph_ret_entry { |
61 | struct trace_entry ent; | 68 | struct trace_entry ent; |
62 | unsigned long ip; | 69 | struct ftrace_graph_ret ret; |
63 | unsigned long parent_ip; | ||
64 | unsigned long long calltime; | ||
65 | unsigned long long rettime; | ||
66 | unsigned long overrun; | ||
67 | }; | 70 | }; |
68 | extern struct tracer boot_tracer; | 71 | extern struct tracer boot_tracer; |
69 | 72 | ||
@@ -264,7 +267,10 @@ extern void __ftrace_bad_type(void); | |||
264 | IF_ASSIGN(var, ent, struct trace_boot_call, TRACE_BOOT_CALL);\ | 267 | IF_ASSIGN(var, ent, struct trace_boot_call, TRACE_BOOT_CALL);\ |
265 | IF_ASSIGN(var, ent, struct trace_boot_ret, TRACE_BOOT_RET);\ | 268 | IF_ASSIGN(var, ent, struct trace_boot_ret, TRACE_BOOT_RET);\ |
266 | IF_ASSIGN(var, ent, struct trace_branch, TRACE_BRANCH); \ | 269 | IF_ASSIGN(var, ent, struct trace_branch, TRACE_BRANCH); \ |
267 | IF_ASSIGN(var, ent, struct ftrace_graph_entry, TRACE_FN_RET);\ | 270 | IF_ASSIGN(var, ent, struct ftrace_graph_ent_entry, \ |
271 | TRACE_GRAPH_ENT); \ | ||
272 | IF_ASSIGN(var, ent, struct ftrace_graph_ret_entry, \ | ||
273 | TRACE_GRAPH_RET); \ | ||
268 | IF_ASSIGN(var, ent, struct bts_entry, TRACE_BTS);\ | 274 | IF_ASSIGN(var, ent, struct bts_entry, TRACE_BTS);\ |
269 | __ftrace_bad_type(); \ | 275 | __ftrace_bad_type(); \ |
270 | } while (0) | 276 | } while (0) |
@@ -397,9 +403,9 @@ void trace_function(struct trace_array *tr, | |||
397 | unsigned long ip, | 403 | unsigned long ip, |
398 | unsigned long parent_ip, | 404 | unsigned long parent_ip, |
399 | unsigned long flags, int pc); | 405 | unsigned long flags, int pc); |
400 | void | ||
401 | trace_function_graph(struct ftrace_graph_ret *trace); | ||
402 | 406 | ||
407 | void trace_graph_return(struct ftrace_graph_ret *trace); | ||
408 | void trace_graph_entry(struct ftrace_graph_ent *trace); | ||
403 | void trace_bts(struct trace_array *tr, | 409 | void trace_bts(struct trace_array *tr, |
404 | unsigned long from, | 410 | unsigned long from, |
405 | unsigned long to); | 411 | unsigned long to); |