Merge "Expand seccomp whitelist"

This commit is contained in:
Treehugger Robot
2017-02-10 21:08:05 +00:00
committed by Gerrit Code Review

View File

@@ -148,7 +148,10 @@ bool set_seccomp_filter() {
AllowSyscall(f, 128); // __NR_restart_syscall
// b/35034743
AllowSyscall(f, 267); // __NR_fstatfs64
AllowSyscall(f, 267); // __NR_syncfs
// b/34763393
AllowSyscall(f, 277); // __NR_seccomp
Trap(f);