]> git.baikalelectronics.ru Git - kernel.git/commit
tools/bpf: fix test_sockmap failure
authorYonghong Song <yhs@fb.com>
Thu, 21 Jun 2018 17:02:20 +0000 (10:02 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Thu, 21 Jun 2018 22:31:42 +0000 (00:31 +0200)
commitdff8c988e5d1879c7a9f9a32c9cf808f0f4aaf94
treef3be2d526350b7529df5e53b7f69284d50ebf15b
parent04ad5b6a82625dc5cc1e97b16180f149ea3276d6
tools/bpf: fix test_sockmap failure

On one of our production test machine, when running
bpf selftest test_sockmap, I got the following error:
  # sudo ./test_sockmap
  libbpf: failed to create map (name: 'sock_map'): Operation not permitted
  libbpf: failed to load object 'test_sockmap_kern.o'
  libbpf: Can't get the 0th fd from program sk_skb1: only -1 instances
  ......
  load_bpf_file: (-1) Operation not permitted
  ERROR: (-1) load bpf failed

The error is due to not-big-enough rlimit
  struct rlimit r = {10 * 1024 * 1024, RLIM_INFINITY};

The test already includes "bpf_rlimit.h", which sets current
and max rlimit to RLIM_INFINITY. Let us just use it.

Signed-off-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
tools/testing/selftests/bpf/test_sockmap.c