]> www.infradead.org Git - users/jedix/linux-maple.git/commit
net: filter: Avoid shadowing variable in bpf_convert_ctx_access()
authorBreno Leitao <leitao@debian.org>
Fri, 28 Feb 2025 18:43:34 +0000 (10:43 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Sat, 15 Mar 2025 18:48:27 +0000 (11:48 -0700)
commit19856a524729435dac4fa93421b2f0920c89a4b2
treef3c8f17826b5c5b941db5d9c9b1b975b013ccc69
parent282f09227112ebdfeb9c1c1378b3fa47f3376243
net: filter: Avoid shadowing variable in bpf_convert_ctx_access()

Rename the local variable 'off' to 'offset' to avoid shadowing the existing
'off' variable that is declared as an `int` in the outer scope of
bpf_convert_ctx_access().

This fixes a compiler warning:

 net/core/filter.c:9679:8: warning: declaration shadows a local variable [-Wshadow]

Signed-off-by: Breno Leitao <leitao@debian.org>
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
Link: https://patch.msgid.link/20250228-fix_filter-v1-1-ce13eae66fe9@debian.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
net/core/filter.c