diff options
| author | Roman Gushchin <[email protected]> | 2020-12-01 21:59:00 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2020-12-03 02:32:47 +0000 |
| commit | 5b0764b2d34510bc87d33a580da98f77789ac36f (patch) | |
| tree | bd80a792599f564fcbcf074a0e7618a9d71b2fd8 /samples/bpf/test_overhead_user.c | |
| parent | bpf: Eliminate rlimit-based memory accounting for bpf progs (diff) | |
| download | kernel-5b0764b2d34510bc87d33a580da98f77789ac36f.tar.gz kernel-5b0764b2d34510bc87d33a580da98f77789ac36f.zip | |
bpf: samples: Do not touch RLIMIT_MEMLOCK
Since bpf is not using rlimit memlock for the memory accounting
and control, do not change the limit in sample applications.
Signed-off-by: Roman Gushchin <[email protected]>
Signed-off-by: Alexei Starovoitov <[email protected]>
Acked-by: Song Liu <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
Diffstat (limited to 'samples/bpf/test_overhead_user.c')
| -rw-r--r-- | samples/bpf/test_overhead_user.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/samples/bpf/test_overhead_user.c b/samples/bpf/test_overhead_user.c index 819a6fe86f89..4821f9d99c1f 100644 --- a/samples/bpf/test_overhead_user.c +++ b/samples/bpf/test_overhead_user.c @@ -162,13 +162,11 @@ static void unload_progs(void) int main(int argc, char **argv) { - struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY}; int num_cpu = sysconf(_SC_NPROCESSORS_ONLN); int test_flags = ~0; char filename[256]; int err = 0; - setrlimit(RLIMIT_MEMLOCK, &r); if (argc > 1) test_flags = atoi(argv[1]) ? : test_flags; |
