diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-03-23 23:38:49 -0400 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-24 09:31:34 -0400 |
commit | 5d1a03dc541dc6672e60e57249ed22f40654ca47 (patch) | |
tree | 0b72061cc8c56797474d2efbfe1954ce0ad27ce8 /include/linux/ftrace.h | |
parent | 098335215a4921a8a54193829eaed602dca24df5 (diff) |
function-graph: moved the timestamp from arch to generic code
This patch move the timestamp from happening in the arch specific
code into the general code. This allows for better control by the tracer
to time manipulation.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r-- | include/linux/ftrace.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index db3fed630db3..1141248c84ee 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -369,8 +369,7 @@ struct ftrace_ret_stack { | |||
369 | extern void return_to_handler(void); | 369 | extern void return_to_handler(void); |
370 | 370 | ||
371 | extern int | 371 | extern int |
372 | ftrace_push_return_trace(unsigned long ret, unsigned long long time, | 372 | ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth); |
373 | unsigned long func, int *depth); | ||
374 | extern void | 373 | extern void |
375 | ftrace_pop_return_trace(struct ftrace_graph_ret *trace, unsigned long *ret); | 374 | ftrace_pop_return_trace(struct ftrace_graph_ret *trace, unsigned long *ret); |
376 | 375 | ||