aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2008-12-04 17:51:23 -0500
committerIngo Molnar <mingo@elte.hu>2008-12-05 08:47:44 -0500
commit21a8c466f99063eeb8567318b4e305eda9015408 (patch)
treebc15ed9d28a4f1a52d390ceca6893d84de50a232
parent77d683f3e0258d522c5506e7b5fd05c9411184d9 (diff)
tracing/ftrace: provide the macro task_curr_ret_stack()
Impact: cleanup As suggested by Steven Rostedt, this patch provide a new macro task_curr_ret_stack() to move the cpp conditionnal CONFIG into the linux/ftrace.h headers. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Acked-by: Steven Rostedt <rostedt@goodmis.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--include/linux/ftrace.h11
-rw-r--r--kernel/trace/trace.c8
2 files changed, 12 insertions, 7 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index b295d3106bfe..b9b4d0a22d10 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -8,6 +8,7 @@
8#include <linux/types.h> 8#include <linux/types.h>
9#include <linux/kallsyms.h> 9#include <linux/kallsyms.h>
10#include <linux/bitops.h> 10#include <linux/bitops.h>
11#include <linux/sched.h>
11 12
12#ifdef CONFIG_FUNCTION_TRACER 13#ifdef CONFIG_FUNCTION_TRACER
13 14
@@ -387,9 +388,19 @@ extern void unregister_ftrace_graph(void);
387 388
388extern void ftrace_graph_init_task(struct task_struct *t); 389extern void ftrace_graph_init_task(struct task_struct *t);
389extern void ftrace_graph_exit_task(struct task_struct *t); 390extern void ftrace_graph_exit_task(struct task_struct *t);
391
392static inline int task_curr_ret_stack(struct task_struct *t)
393{
394 return t->curr_ret_stack;
395}
390#else 396#else
391static inline void ftrace_graph_init_task(struct task_struct *t) { } 397static inline void ftrace_graph_init_task(struct task_struct *t) { }
392static inline void ftrace_graph_exit_task(struct task_struct *t) { } 398static inline void ftrace_graph_exit_task(struct task_struct *t) { }
399
400static inline int task_curr_ret_stack(struct task_struct *tsk)
401{
402 return -1;
403}
393#endif 404#endif
394 405
395#ifdef CONFIG_TRACING 406#ifdef CONFIG_TRACING
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 5dca6ef1fbeb..7a93c663e52a 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -3657,13 +3657,7 @@ int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3657 return 0; 3657 return 0;
3658 3658
3659 va_start(ap, fmt); 3659 va_start(ap, fmt);
3660 3660 ret = trace_vprintk(ip, task_curr_ret_stack(current), fmt, ap);
3661#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3662 ret = trace_vprintk(ip, current->curr_ret_stack, fmt, ap);
3663#else
3664 ret = trace_vprintk(ip, -1, fmt, ap);
3665#endif
3666
3667 va_end(ap); 3661 va_end(ap);
3668 return ret; 3662 return ret;
3669} 3663}