projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa73514
)
ftrace: Use list_move instead of list_del/list_add
author
Baokun Li
<libaokun1@huawei.com>
Tue, 8 Jun 2021 03:11:08 +0000
(11:11 +0800)
committer
Steven Rostedt (VMware)
<rostedt@goodmis.org>
Thu, 8 Jul 2021 17:02:58 +0000
(13:02 -0400)
Using list_move() instead of list_del() + list_add().
Link:
https://lkml.kernel.org/r/20210608031108.2820996-1-libaokun1@huawei.com
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Baokun Li <libaokun1@huawei.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/ftrace.c
patch
|
blob
|
history
diff --git
a/kernel/trace/ftrace.c
b/kernel/trace/ftrace.c
index 72ef4dccbcc47393d6652544826fa98eb4a21ada..e6fb3e6e1ffc22e27d2237019e8bddec2cd8847d 100644
(file)
--- a/
kernel/trace/ftrace.c
+++ b/
kernel/trace/ftrace.c
@@
-4212,8
+4212,7
@@
static void process_mod_list(struct list_head *head, struct ftrace_ops *ops,
if (!func) /* warn? */
continue;
- list_del(&ftrace_mod->list);
- list_add(&ftrace_mod->list, &process_mods);
+ list_move(&ftrace_mod->list, &process_mods);
/* Use the newly allocated func, as it may be "*" */
kfree(ftrace_mod->func);