summaryrefslogtreecommitdiffstats
path: root/samples/bpf/sockex2_user.c
diff options
context:
space:
mode:
authorYafang Shao <laoar.shao@gmail.com>2022-04-09 14:59:55 +0200
committerAndrii Nakryiko <andrii@kernel.org>2022-04-11 05:17:15 +0200
commitb25acdafd3730110254f8452b113a6311ab5cf2d (patch)
tree7365487e69507af364ee8a5e65fe994011bd9ea6 /samples/bpf/sockex2_user.c
parentlibbpf: Fix a bug with checking bpf_probe_read_kernel() support in old kernels (diff)
downloadlinux-b25acdafd3730110254f8452b113a6311ab5cf2d.tar.xz
linux-b25acdafd3730110254f8452b113a6311ab5cf2d.zip
samples/bpf: Use libbpf 1.0 API mode instead of RLIMIT_MEMLOCK
We have switched to memcg-based memory accouting and thus the rlimit is not needed any more. LIBBPF_STRICT_AUTO_RLIMIT_MEMLOCK was introduced in libbpf for backward compatibility, so we can use it instead now. This patch also removes the useless header sys/resource.h from many files in samples/bpf. Signed-off-by: Yafang Shao <laoar.shao@gmail.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20220409125958.92629-2-laoar.shao@gmail.com
Diffstat (limited to 'samples/bpf/sockex2_user.c')
-rw-r--r--samples/bpf/sockex2_user.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/samples/bpf/sockex2_user.c b/samples/bpf/sockex2_user.c
index 6a3fd369d3fc..2c18471336f0 100644
--- a/samples/bpf/sockex2_user.c
+++ b/samples/bpf/sockex2_user.c
@@ -7,7 +7,6 @@
#include "sock_example.h"
#include <unistd.h>
#include <arpa/inet.h>
-#include <sys/resource.h>
struct pair {
__u64 packets;