libbpf: Avoid false unuinitialized variable warning in bpf_core_apply_relo
Some versions of GCC report uninitialized targ_spec usage. GCC is wrong, but let's avoid unnecessary warnings. Fixes: ddc7c3042614 ("libbpf: implement BPF CO-RE offset relocation algorithm") Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20200821225556.2178419-1-andriin@fb.com
This commit is contained in:
parent
07ff4f0126
commit
3418c56de8
@ -5390,7 +5390,7 @@ static int bpf_core_apply_relo(struct bpf_program *prog,
|
|||||||
struct hashmap *cand_cache)
|
struct hashmap *cand_cache)
|
||||||
{
|
{
|
||||||
const char *prog_name = bpf_program__title(prog, false);
|
const char *prog_name = bpf_program__title(prog, false);
|
||||||
struct bpf_core_spec local_spec, cand_spec, targ_spec;
|
struct bpf_core_spec local_spec, cand_spec, targ_spec = {};
|
||||||
const void *type_key = u32_as_hash_key(relo->type_id);
|
const void *type_key = u32_as_hash_key(relo->type_id);
|
||||||
struct bpf_core_relo_res cand_res, targ_res;
|
struct bpf_core_relo_res cand_res, targ_res;
|
||||||
const struct btf_type *local_type;
|
const struct btf_type *local_type;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user