Commit ed9492df authored by Li zeming's avatar Li zeming Committed by Masami Hiramatsu (Google)

kernel: kprobes: Remove unnecessary ‘0’ values

it is assigned first, so it does not need to initialize the assignment.

Link: https://lore.kernel.org/all/20230711185353.3218-1-zeming@nfschina.com/Signed-off-by: default avatarLi zeming <zeming@nfschina.com>
Acked-by: default avatarMasami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: default avatarMasami Hiramatsu (Google) <mhiramat@kernel.org>
parent e1164787
...@@ -1072,7 +1072,7 @@ static int kprobe_ftrace_enabled; ...@@ -1072,7 +1072,7 @@ static int kprobe_ftrace_enabled;
static int __arm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops, static int __arm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
int *cnt) int *cnt)
{ {
int ret = 0; int ret;
lockdep_assert_held(&kprobe_mutex); lockdep_assert_held(&kprobe_mutex);
...@@ -1110,7 +1110,7 @@ static int arm_kprobe_ftrace(struct kprobe *p) ...@@ -1110,7 +1110,7 @@ static int arm_kprobe_ftrace(struct kprobe *p)
static int __disarm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops, static int __disarm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
int *cnt) int *cnt)
{ {
int ret = 0; int ret;
lockdep_assert_held(&kprobe_mutex); lockdep_assert_held(&kprobe_mutex);
...@@ -2692,7 +2692,7 @@ void kprobe_free_init_mem(void) ...@@ -2692,7 +2692,7 @@ void kprobe_free_init_mem(void)
static int __init init_kprobes(void) static int __init init_kprobes(void)
{ {
int i, err = 0; int i, err;
/* FIXME allocate the probe table, currently defined statically */ /* FIXME allocate the probe table, currently defined statically */
/* initialize all list heads */ /* initialize all list heads */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment