From 13516fa188bad2f0af5c8417c492ed3ca3fbb0b3 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sat, 25 Sep 2021 08:23:41 +0100 Subject: [PATCH] transmission: add two more syscalls to seccomp filter Testing showed that additional syscalls are needed on ARMv7. Add "clock_gettime64" and "statx" which seem to be used now instead of "clock_gettime" and "stat" syscalls which are already listed. Signed-off-by: Daniel Golle --- net/transmission/files/transmission-daemon.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/transmission/files/transmission-daemon.json b/net/transmission/files/transmission-daemon.json index 7711f1561..7621c4021 100644 --- a/net/transmission/files/transmission-daemon.json +++ b/net/transmission/files/transmission-daemon.json @@ -10,6 +10,7 @@ "bind", "brk", "clock_gettime", + "clock_gettime64", "clone", "close", "connect", @@ -77,6 +78,7 @@ "sigreturn", "socket", "stat", + "statx", "stat64", "socketpair", "umask",