# HG changeset patch # User Matthew Clarkson # Date 1605255762 0 # Node ID a6ee95eb8e601df7950212196c2fc13e75dc9d22 # Parent 33b56ca3a0e588bbd467733a211a503330e97bd4 privsep: Allow fcntl64 and fstat64 to fix ARM32 talking to the controller We already allow fcntl and fstat so this is not a problem. diff -r 33b56ca3a0e5 -r a6ee95eb8e60 src/privsep-linux.c --- a/src/privsep-linux.c Fri Nov 13 08:21:12 2020 +0000 +++ b/src/privsep-linux.c Fri Nov 13 08:22:42 2020 +0000 @@ -236,9 +236,15 @@ #ifdef __NR_fcntl SECCOMP_ALLOW(__NR_fcntl), #endif +#ifdef __NR_fcntl64 + SECCOMP_ALLOW(__NR_fcntl64), +#endif #ifdef __NR_fstat SECCOMP_ALLOW(__NR_fstat), #endif +#ifdef __NR_fstat64 + SECCOMP_ALLOW(__NR_fstat64), +#endif #ifdef __NR_gettimeofday SECCOMP_ALLOW(__NR_gettimeofday), #endif