selftests/bpf: Switch sk_lookup selftests to strict SEC("sk_lookup") use
authorAndrii Nakryiko <andrii@kernel.org>
Tue, 28 Sep 2021 16:19:46 +0000 (09:19 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Tue, 28 Sep 2021 20:51:20 +0000 (13:51 -0700)
commit7c80c87ad56a05ec56069c3f5d7e60b5b1eb19b4
tree314da3ed262c2dc43d60dfeca2ac47fd430e19cd
parentdd94d45cf0acb1d82748b17e1106b2c8b487b28b
selftests/bpf: Switch sk_lookup selftests to strict SEC("sk_lookup") use

Update "sk_lookup/" definition to be a stand-alone type specifier,
with backwards-compatible prefix match logic in non-libbpf-1.0 mode.

Currently in selftests all the "sk_lookup/<whatever>" uses just use
<whatever> for duplicated unique name encoding, which is redundant as
BPF program's name (C function name) uniquely and descriptively
identifies the intended use for such BPF programs.

With libbpf's SEC_DEF("sk_lookup") definition updated, switch existing
sk_lookup programs to use "unqualified" SEC("sk_lookup") section names,
with no random text after it.

Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Dave Marchevsky <davemarchevsky@fb.com>
Link: https://lore.kernel.org/bpf/20210928161946.2512801-11-andrii@kernel.org
tools/lib/bpf/libbpf.c
tools/testing/selftests/bpf/progs/test_sk_lookup.c