mirror of
https://passt.top/passt
synced 2025-06-07 00:15:34 +02:00
tcp_splice, udp_flow: fcntl64() support on PPC64 depends on glibc version
I explicitly added fcntl64() to the list of allowed system calls for PPC64 a while ago, and now it turns out it's not available in recent Debian builds. The warning from seccomp.sh is harmless because we unconditionally try to enable fcntl() anyway, but take care of it anyway. Link: https://buildd.debian.org/status/fetch.php?pkg=passt&arch=ppc64&ver=0.0%7Egit20250121.4f2c8e7-1&stamp=1737477147&raw=0 Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
b75ad159e8
commit
71fa736277
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
* - FIN_SENT_0: FIN (write shutdown) sent to accepted socket
|
||||
* - FIN_SENT_1: FIN (write shutdown) sent to target socket
|
||||
*
|
||||
* #syscalls:pasta pipe2|pipe fcntl arm:fcntl64 ppc64:fcntl64 i686:fcntl64
|
||||
* #syscalls:pasta pipe2|pipe fcntl arm:fcntl64 ppc64:fcntl64|fcntl i686:fcntl64
|
||||
*/
|
||||
|
||||
#include <sched.h>
|
||||
|
|
|
@ -174,7 +174,7 @@ cancel:
|
|||
* @s_in: Source socket address, filled in by recvmmsg()
|
||||
* @now: Timestamp
|
||||
*
|
||||
* #syscalls fcntl arm:fcntl64 ppc64:fcntl64 i686:fcntl64
|
||||
* #syscalls fcntl arm:fcntl64 ppc64:fcntl64|fcntl i686:fcntl64
|
||||
*
|
||||
* Return: sidx for the destination side of the flow for this packet, or
|
||||
* FLOW_SIDX_NONE if we couldn't find or create a flow.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue