aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bpf/bpftool/main.h
diff options
context:
space:
mode:
authorYafang Shao <laoar.shao@gmail.com>2022-04-09 12:59:57 +0000
committerAndrii Nakryiko <andrii@kernel.org>2022-04-10 20:17:16 -0700
commita777e18f1bcd32528ff5dfd10a6629b655b05eb8 (patch)
tree681ae396647ca9e5cb2d977f135e365d4a226c12 /tools/bpf/bpftool/main.h
parentselftests/bpf: Use libbpf 1.0 API mode instead of RLIMIT_MEMLOCK (diff)
downloadlinux-a777e18f1bcd32528ff5dfd10a6629b655b05eb8.tar.xz
linux-a777e18f1bcd32528ff5dfd10a6629b655b05eb8.zip
bpftool: 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. libbpf_set_strict_mode always return 0, so we don't need to check whether the return value is 0 or not. 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-4-laoar.shao@gmail.com
Diffstat (limited to 'tools/bpf/bpftool/main.h')
-rw-r--r--tools/bpf/bpftool/main.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/bpf/bpftool/main.h b/tools/bpf/bpftool/main.h
index 6e9277ffc68c..aa99ffab451a 100644
--- a/tools/bpf/bpftool/main.h
+++ b/tools/bpf/bpftool/main.h
@@ -102,8 +102,6 @@ int detect_common_prefix(const char *arg, ...);
void fprint_hex(FILE *f, void *arg, unsigned int n, const char *sep);
void usage(void) __noreturn;
-void set_max_rlimit(void);
-
int mount_tracefs(const char *target);
struct obj_ref {