From: Daniel Golle Date: Mon, 1 Jun 2026 02:19:22 +0000 (+0100) Subject: transmission: add p{read,write}v2 syscalls to seccomp filter X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=9e84e22a78a5c884bc232f5c4d8374553111059f;p=openwrt-packages.git transmission: add p{read,write}v2 syscalls to seccomp filter Tracing Transmission 4.11 showed the Transmission is started to use the pwritev2 syscall for better write performance. Add pwritev2 and preadv2 (which may be used as well, and anyway doesn't hurt) to the list of allowed syscalls. Signed-off-by: Daniel Golle --- diff --git a/net/transmission/Makefile b/net/transmission/Makefile index 40c8ab2c2..a8c24b92b 100644 --- a/net/transmission/Makefile +++ b/net/transmission/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=transmission PKG_VERSION:=4.1.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/transmission/transmission/releases/download/$(PKG_VERSION)/ diff --git a/net/transmission/files/transmission-daemon.json b/net/transmission/files/transmission-daemon.json index 77e0cc413..c5debe13c 100644 --- a/net/transmission/files/transmission-daemon.json +++ b/net/transmission/files/transmission-daemon.json @@ -75,9 +75,11 @@ "poll", "ppoll", "pread64", + "preadv2", "prlimit64", "pselect6", "pwrite64", + "pwritev2", "quotactl", "read", "readlink",