diff --git a/init/seccomp.cpp b/init/seccomp.cpp index a98835dfc..b0688f37b 100644 --- a/init/seccomp.cpp +++ b/init/seccomp.cpp @@ -231,6 +231,9 @@ bool set_seccomp_filter() { // b/34719286 AllowSyscall(f, 351); // __NR_eventfd + // b/34817266 + AllowSyscall(f, 252); // __NR_epoll_wait + // arm32-on-arm64 only filter - autogenerated from bionic syscall usage for (size_t i = 0; i < arm_filter_size; ++i) f.push_back(arm_filter[i]);