提交 08468754 编写于 作者: C Changbin Du 提交者: Steven Rostedt (VMware)

ftrace: Simplify ftrace hash lookup code in clear_func_from_hash()

Function ftrace_lookup_ip() will check empty hash table. So we don't
need extra check outside.

Link: http://lkml.kernel.org/r/20190910143336.13472-1-changbin.du@gmail.comSigned-off-by: NChangbin Du <changbin.du@gmail.com>
Signed-off-by: NSteven Rostedt (VMware) <rostedt@goodmis.org>
上级 ac681546
...@@ -6036,11 +6036,7 @@ clear_func_from_hash(struct ftrace_init_func *func, struct ftrace_hash *hash) ...@@ -6036,11 +6036,7 @@ clear_func_from_hash(struct ftrace_init_func *func, struct ftrace_hash *hash)
{ {
struct ftrace_func_entry *entry; struct ftrace_func_entry *entry;
if (ftrace_hash_empty(hash)) entry = ftrace_lookup_ip(hash, func->ip);
return;
entry = __ftrace_lookup_ip(hash, func->ip);
/* /*
* Do not allow this rec to match again. * Do not allow this rec to match again.
* Yeah, it may waste some memory, but will be removed * Yeah, it may waste some memory, but will be removed
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册