[PATCH] samples/bpf: set resource limit to infinity.
From: William Tu <hidden>
Date: 2016-06-24 22:55:35
Signed-off-by: William Tu <redacted> --- samples/bpf/test_maps.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/samples/bpf/test_maps.c b/samples/bpf/test_maps.c
index 47bf085..d2bc96e 100644
--- a/samples/bpf/test_maps.c
+++ b/samples/bpf/test_maps.c@@ -16,6 +16,7 @@ #include <assert.h> #include <sys/wait.h> #include <stdlib.h> +#include <sys/resource.h> #include "libbpf.h" static int map_flags;
@@ -483,6 +484,9 @@ static void run_all_tests(void) int main(void) { + struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY}; + + setrlimit(RLIMIT_MEMLOCK, &r); map_flags = 0; run_all_tests(); map_flags = BPF_F_NO_PREALLOC;
--
2.5.0