summaryrefslogtreecommitdiff
path: root/bpfloader
diff options
context:
space:
mode:
authorChenbo Feng <fengc@google.com>2019-04-09 12:04:33 -0700
committerChenbo Feng <fengc@google.com>2019-04-09 12:04:33 -0700
commitee121646cf60988e69eb2c8b1e87e11f5e4932cc (patch)
treec6106741964eee52bb6786bb223c54b1bf390a8c /bpfloader
parente1153fd1da40bdc43b82445b2c68a28c6f24e062 (diff)
downloadbpf-ee121646cf60988e69eb2c8b1e87e11f5e4932cc.tar.gz
Set bpfloader MEMLOCK rlimit to at least 8MB
Since bpfloader is only used to create the bpf maps and load bpf programs on android devices. It is okay to set the MEMLOCK rlimit of bpfloader to the proper size needed by bpf maps regardless of the global device values. It helps partner to adopt the bpf feature without changing the device configuration. Bug: 119279144 Bug: 129246448 Test: remove device specific rlimit and build and verify bpf maps created. Change-Id: Ib97d1d304f4ea9a6215afed76e1c1e28f1415221
Diffstat (limited to 'bpfloader')
-rw-r--r--bpfloader/bpfloader.rc2
1 files changed, 2 insertions, 0 deletions
diff --git a/bpfloader/bpfloader.rc b/bpfloader/bpfloader.rc
index eb8bd25..7ac145d 100644
--- a/bpfloader/bpfloader.rc
+++ b/bpfloader/bpfloader.rc
@@ -1,4 +1,6 @@
service bpfloader /system/bin/bpfloader
class main
capabilities SYS_ADMIN
+ # Set RLIMIT_MEMLOCK to 8MB for bpfloader
+ rlimit memlock 8388608 8388608
oneshot