提交 24ed0c4b 编写于 作者: M Ming Lei 提交者: Ingo Molnar

tracing: fix check for return value of register_module_notifier

return zero should be correct, so fix it.

[ Impact: eliminate incorrect syslog message ]
Signed-off-by: NMing Lei <tom.leiming@gmail.com>
Acked-by: NFrederic Weisbecker <fweisbec@gmail.com>
Acked-by: NLi Zefan <lizf@cn.fujitsu.com>
Cc: rostedt@goodmis.org
LKML-Reference: <1242545498-7285-1-git-send-email-tom.leiming@gmail.com>
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 1079cac0
......@@ -2826,7 +2826,7 @@ void __init ftrace_init(void)
__stop_mcount_loc);
ret = register_module_notifier(&ftrace_module_nb);
if (!ret)
if (ret)
pr_warning("Failed to register trace ftrace module notifier\n");
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册