ARC, bpf: Fix issues reported by the static analyzers
authorShahab Vahedi <shahab@synopsys.com>
Sat, 25 May 2024 03:56:28 +0000 (05:56 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Sat, 25 May 2024 17:47:21 +0000 (10:47 -0700)
commitdd6a403795f0c7b5c566f86f2ee6b687278d3c1c
tree365a2e0e7266d9be0554f260d4bd58bf688a8f07
parent590016ad83de770153a09151336d95544d6bd7ad
ARC, bpf: Fix issues reported by the static analyzers

Also updated couple of comments along the way.

One of the issues reported was indeed a bug in the code:

  memset(ctx, 0, sizeof(ctx))      // original line
  memset(ctx, 0, sizeof(*ctx))     // fixed line

That was a nice catch.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202405222314.UG5F2NHn-lkp@intel.com/
Closes: https://lore.kernel.org/oe-kbuild-all/202405232036.Xqoc3b0J-lkp@intel.com/
Signed-off-by: Shahab Vahedi <shahab@synopsys.com>
Link: https://lore.kernel.org/r/20240525035628.1026-1-list+bpf@vahedi.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
arch/arc/net/bpf_jit.h
arch/arc/net/bpf_jit_arcv2.c
arch/arc/net/bpf_jit_core.c