| Index: content/common/sandbox_linux/bpf_renderer_policy_linux.cc
|
| diff --git a/content/common/sandbox_linux/bpf_renderer_policy_linux.cc b/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
|
| index ce7dffbef0f436217f99d538f8f2ee1e9f95d62b..f4c19a680127a73f11d8c728f68ddc8eb9fee032 100644
|
| --- a/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
|
| +++ b/content/common/sandbox_linux/bpf_renderer_policy_linux.cc
|
| @@ -43,6 +43,9 @@ ErrorCode RendererProcessPolicy::EvaluateSyscall(SandboxBPF* sandbox,
|
| case __NR_prctl:
|
| return sandbox::RestrictPrctl(sandbox);
|
| // Allow the system calls below.
|
| + // The baseline policy allows __NR_clock_gettime. Allow
|
| + // clock_getres() for V8. crbug.com/329053.
|
| + case __NR_clock_getres:
|
| case __NR_fdatasync:
|
| case __NR_fsync:
|
| case __NR_getpriority:
|
|
|