]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
test_bpf: Fix testing with CONFIG_BPF_JIT_ALWAYS_ON=y on other arches
authorThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Tue, 20 Mar 2018 12:58:51 +0000 (09:58 -0300)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 20 Mar 2018 22:04:30 +0000 (23:04 +0100)
Function bpf_fill_maxinsns11 is designed to not be able to be JITed on
x86_64. So, it fails when CONFIG_BPF_JIT_ALWAYS_ON=y, and
commit 09584b406742 ("bpf: fix selftests/bpf test_kmod.sh failure when
CONFIG_BPF_JIT_ALWAYS_ON=y") makes sure that failure is detected on that
case.

However, it does not fail on other architectures, which have a different
JIT compiler design. So, test_bpf has started to fail to load on those.

After this fix, test_bpf loads fine on both x86_64 and ppc64el.

Fixes: 09584b406742 ("bpf: fix selftests/bpf test_kmod.sh failure when CONFIG_BPF_JIT_ALWAYS_ON=y")
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
Reviewed-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
lib/test_bpf.c

index 2efb213716faaa5251fe7142c02f494e5adb8f89..3e9335493fe493139574649ff4950f8e313cc01c 100644 (file)
@@ -5467,7 +5467,7 @@ static struct bpf_test tests[] = {
        {
                "BPF_MAXINSNS: Jump, gap, jump, ...",
                { },
-#ifdef CONFIG_BPF_JIT_ALWAYS_ON
+#if defined(CONFIG_BPF_JIT_ALWAYS_ON) && defined(CONFIG_X86)
                CLASSIC | FLAG_NO_DATA | FLAG_EXPECTED_FAIL,
 #else
                CLASSIC | FLAG_NO_DATA,