From: Daniel Golle Date: Sat, 25 Sep 2021 07:23:41 +0000 (+0100) Subject: transmission: add two more syscalls to seccomp filter X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=13516fa188bad2f0af5c8417c492ed3ca3fbb0b3;p=openwrt-packages.git 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 --- 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",