Re: [PATCH bpf-next] bpf: Remove insn_buf[] declaration in inner block

2021-03-19 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to bpf/bpf-next.git (refs/heads/master): On Thu, 18 Mar 2021 10:48:51 +0800 you wrote: > Two insn_buf[16] variables are declared in the function, which act on > function scope and block scope respectively. > The statement in the inner blocks is redundant, so remove i

[PATCH bpf-next] bpf: Remove insn_buf[] declaration in inner block

2021-03-17 Thread Jianlin Lv
Two insn_buf[16] variables are declared in the function, which act on function scope and block scope respectively. The statement in the inner blocks is redundant, so remove it. Signed-off-by: Jianlin Lv --- kernel/bpf/verifier.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/bpf/verif