提交 3612fdf7 编写于 作者: I Ingo Molnar

Merge branch 'tip/tracing/ftrace' of...

Merge branch 'tip/tracing/ftrace' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace into tracing/ftrace
...@@ -120,9 +120,9 @@ static int ftrace_reg_event_##call(void) \ ...@@ -120,9 +120,9 @@ static int ftrace_reg_event_##call(void) \
int ret; \ int ret; \
\ \
ret = register_trace_##call(ftrace_event_##call); \ ret = register_trace_##call(ftrace_event_##call); \
if (!ret) \ if (ret) \
pr_info("event trace: Could not activate trace point " \ pr_info("event trace: Could not activate trace point " \
"probe to " #call); \ "probe to " #call "\n"); \
return ret; \ return ret; \
} \ } \
\ \
...@@ -195,9 +195,9 @@ static int ftrace_raw_reg_event_##call(void) \ ...@@ -195,9 +195,9 @@ static int ftrace_raw_reg_event_##call(void) \
int ret; \ int ret; \
\ \
ret = register_trace_##call(ftrace_raw_event_##call); \ ret = register_trace_##call(ftrace_raw_event_##call); \
if (!ret) \ if (ret) \
pr_info("event trace: Could not activate trace point " \ pr_info("event trace: Could not activate trace point " \
"probe to " #call); \ "probe to " #call "\n"); \
return ret; \ return ret; \
} \ } \
\ \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册