Skip to content

Commit 729fd99

Browse files
alan-maguireacmel
authored andcommitted
pahole: Distilled_base btf_feature should be reported for libbpf > 1.5
Alexei ran into issues [1] generating distilled base BTF with pahole built against an older < 1.5 libbpf. For older libbpf, we cannot support distilled base BTF (since the library API btf__distill_base() is not present) so we should not report it as a feature in that case. [1] https://lore.kernel.org/bpf/CAADnVQKFjK8BnZ-rYzXKv-Zdw=HBJRoJ7jo5PN+0P6+qpJOxNg@mail.gmail.com/ Reported-by: Alexei Starovoitov <[email protected]> Signed-off-by: Alan Maguire <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 58ba389 commit 729fd99

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pahole.c

+2
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,9 @@ struct btf_feature {
12061206
BTF_DEFAULT_FEATURE(consistent_func, skip_encoding_btf_inconsistent_proto, false),
12071207
BTF_DEFAULT_FEATURE(decl_tag_kfuncs, btf_decl_tag_kfuncs, false),
12081208
BTF_NON_DEFAULT_FEATURE(reproducible_build, reproducible_build, false),
1209+
#if LIBBPF_MAJOR_VERSION >= 1 && LIBBPF_MINOR_VERSION >= 5
12091210
BTF_NON_DEFAULT_FEATURE(distilled_base, btf_gen_distilled_base, false),
1211+
#endif
12101212
BTF_NON_DEFAULT_FEATURE(global_var, encode_btf_global_vars, false),
12111213
};
12121214

0 commit comments

Comments
 (0)