]> git.baikalelectronics.ru Git - kernel.git/commit
bpf: Fix build for disabled CONFIG_DEBUG_INFO_BTF option
authorJiri Olsa <jolsa@kernel.org>
Tue, 14 Jul 2020 10:25:33 +0000 (12:25 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 14 Jul 2020 17:20:31 +0000 (10:20 -0700)
commite191fc4baad4ea9f272e8aac46fbc02a3b1695fa
tree95055f93a2154cbb0ffa02a322bb66b1cf8e19d6
parent1e640d9aa9bbef4a202c656f2dedb654a6194873
bpf: Fix build for disabled CONFIG_DEBUG_INFO_BTF option

Stephen reported following linker warnings on powerpc build:

  ld: warning: orphan section `.BTF_ids' from `kernel/trace/bpf_trace.o' being placed in section `.BTF_ids'
  ld: warning: orphan section `.BTF_ids' from `kernel/bpf/btf.o' being placed in section `.BTF_ids'
  ld: warning: orphan section `.BTF_ids' from `kernel/bpf/stackmap.o' being placed in section `.BTF_ids'
  ld: warning: orphan section `.BTF_ids' from `net/core/filter.o' being placed in section `.BTF_ids'
  ld: warning: orphan section `.BTF_ids' from `kernel/trace/bpf_trace.o' being placed in section `.BTF_ids'

It's because we generated .BTF_ids section even when
CONFIG_DEBUG_INFO_BTF is not enabled. Fixing this by
generating empty btf_id arrays for this case.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/bpf/20200714102534.299280-1-jolsa@kernel.org
include/linux/btf_ids.h