selftests: net: declare section names for bpf_offload
authorJakub Kicinski <kuba@kernel.org>
Tue, 9 Apr 2024 03:15:48 +0000 (20:15 -0700)
committerJakub Kicinski <kuba@kernel.org>
Wed, 10 Apr 2024 21:03:12 +0000 (14:03 -0700)
commitb1c2ce11d42886d08cfa28e38ee07f2b606ced0b
tree9ef005b821557497573639effbb565b93958d101
parentfc50c698c28bcf307dfb14ba9d0b3cacb091c1cb
selftests: net: declare section names for bpf_offload

Non-ancient ip (iproute2-5.15.0, libbpf 0.7.0) refuses to load
the sample with maps because we don't generate BTF:

   libbpf: BTF is required, but is missing or corrupted.
   ERROR: opening BPF object file failed

Enable BTF by adding -g to clang flags. With that done
neither of the programs load:

  libbpf: prog 'func': error relocating .BTF.ext function info: -22
  libbpf: prog 'func': failed to relocate calls: -22
  libbpf: failed to load object 'ksft-net-drv/net/sample_ret0.bpf.o'

Andrii explains that this is because we don't specify
section names for the code. Add the section names, too.

Acked-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Stanislav Fomichev <sdf@google.com>
Acked-by: Martin KaFai Lau <martin.lau@kernel.org>
Link: https://lore.kernel.org/r/20240409031549.3531084-4-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/net/Makefile
tools/testing/selftests/net/bpf_offload.py
tools/testing/selftests/net/sample_map_ret0.bpf.c
tools/testing/selftests/net/sample_ret0.bpf.c