Documentation/.renames.txt: warning: ignored by one of the .gitignore files ../kernel/bpf/bpf_local_storage.c:386:6: warning: variable 'err' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized] 386 | if (likely(selem_linked_to_storage(selem))) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../include/linux/compiler.h:76:20: note: expanded from macro 'likely' 76 | # define likely(x) __builtin_expect(!!(x), 1) | ^~~~~~~~~~~~~~~~~~~~~~~~~~ ../kernel/bpf/bpf_local_storage.c:406:9: note: uninitialized use occurs here 406 | return err; | ^~~ ../kernel/bpf/bpf_local_storage.c:386:2: note: remove the 'if' if its condition is always true 386 | if (likely(selem_linked_to_storage(selem))) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../kernel/bpf/bpf_local_storage.c:376:9: note: initialize the variable 'err' to silence this warning 376 | int err; | ^ | = 0 1 warning generated. Documentation/.renames.txt: warning: ignored by one of the .gitignore files