seccomp: gpu: Allow PR_GET_NAME for prctl

MALI GPU driver calls this for printing debug information. Just
enable it since it could help debug.

BUG=None
TEST=manual - Run ARCVM on kukui with debug build of mali driver

Change-Id: If65121520071a1df9b8ba932272428cbac844984
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2262176
Tested-by: Lepton Wu <lepton@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Auto-Submit: Lepton Wu <lepton@chromium.org>
Reviewed-by: Zach Reizner <zachr@chromium.org>
Commit-Queue: Lepton Wu <lepton@chromium.org>
This commit is contained in:
Lepton Wu 2020-06-23 21:01:28 -07:00 committed by Commit Bot
parent c328f65054
commit 42a5d13124
3 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ munmap: 1
nanosleep: 1
pipe2: 1
ppoll: 1
prctl: arg0 == PR_SET_NAME
prctl: arg0 == PR_SET_NAME || arg0 == PR_GET_NAME
read: 1
readv: 1
recvfrom: 1

View file

@ -26,7 +26,7 @@ nanosleep: 1
pipe2: 1
poll: 1
ppoll: 1
prctl: arg0 == PR_SET_NAME
prctl: arg0 == PR_SET_NAME || arg0 == PR_GET_NAME
read: 1
readv: 1
recv: 1

View file

@ -28,7 +28,7 @@ nanosleep: 1
pipe2: 1
poll: 1
ppoll: 1
prctl: arg0 == PR_SET_NAME
prctl: arg0 == PR_SET_NAME || arg0 == PR_GET_NAME
read: 1
readv: 1
recvfrom: 1