]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
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)
committerThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Thu, 29 Mar 2018 10:32:56 +0000 (07:32 -0300)
commit32625984fbeb3701d77f38a5817946c11801600e
tree739db372e0b3b7266ca0ab13403c714a385eb1cd
parentb8a1187b3b54b2699f307c41c0a7af3a5d39f64c
test_bpf: Fix testing with CONFIG_BPF_JIT_ALWAYS_ON=y on other arches

BugLink: http://bugs.launchpad.net/bugs/1756150
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>
(cherry picked from commit 52fda36d63bfc8c8e8ae5eda8eb5ac6f52cd67ed)
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
lib/test_bpf.c