OSDN Git Service

bpf: fix register_btf_kfunc_id_set for !CONFIG_DEBUG_INFO_BTF
authorStanislav Fomichev <sdf@google.com>
Wed, 26 Jan 2022 00:13:40 +0000 (16:13 -0800)
committerAlexei Starovoitov <ast@kernel.org>
Wed, 26 Jan 2022 03:27:28 +0000 (19:27 -0800)
commitc446fdacb10dcb3b9a9ed3b91d91e72d71d94b03
tree86d43c751f9b7a7114cbfe7f0f4aeec68db461cd
parentfc1ca95585aa4f51e9776f01dffedc1591458c31
bpf: fix register_btf_kfunc_id_set for !CONFIG_DEBUG_INFO_BTF

Commit dee872e124e8 ("bpf: Populate kfunc BTF ID sets in struct btf")
breaks loading of some modules when CONFIG_DEBUG_INFO_BTF is not set.
register_btf_kfunc_id_set returns -ENOENT to the callers when
there is no module btf. Let's return 0 (success) instead to let
those modules work in !CONFIG_DEBUG_INFO_BTF cases.

Acked-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Fixes: dee872e124e8 ("bpf: Populate kfunc BTF ID sets in struct btf")
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Link: https://lore.kernel.org/r/20220126001340.1573649-1-sdf@google.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
kernel/bpf/btf.c