Skip to content

Commit

Permalink
kernel: kprobes: Remove unnecessary ‘0’ values
Browse files Browse the repository at this point in the history
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: Li zeming <zeming@nfschina.com>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
  • Loading branch information
Li zeming authored and Masami Hiramatsu (Google) committed Jul 10, 2023
1 parent e116478 commit ed9492d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/kprobes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ static int kprobe_ftrace_enabled;
static int __arm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
int *cnt)
{
int ret = 0;
int ret;

lockdep_assert_held(&kprobe_mutex);

Expand Down Expand Up @@ -1110,7 +1110,7 @@ static int arm_kprobe_ftrace(struct kprobe *p)
static int __disarm_kprobe_ftrace(struct kprobe *p, struct ftrace_ops *ops,
int *cnt)
{
int ret = 0;
int ret;

lockdep_assert_held(&kprobe_mutex);

Expand Down Expand Up @@ -2692,7 +2692,7 @@ void kprobe_free_init_mem(void)

static int __init init_kprobes(void)
{
int i, err = 0;
int i, err;

/* FIXME allocate the probe table, currently defined statically */
/* initialize all list heads */
Expand Down

0 comments on commit ed9492d

Please sign in to comment.