Add __NR_futex_time64 to seccomp sandbox.
This is apparently needed for (some) 32 bit platforms with glibc 2.33. Patch from nix at esperi.org.uk and jjelen at redhat.com via bz#3260.
This commit is contained in:
parent
f88a7a4312
commit
1bb130ed34
|
@ -207,6 +207,9 @@ static const struct sock_filter preauth_insns[] = {
|
||||||
#ifdef __NR_futex
|
#ifdef __NR_futex
|
||||||
SC_ALLOW(__NR_futex),
|
SC_ALLOW(__NR_futex),
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __NR_futex_time64
|
||||||
|
SC_ALLOW(__NR_futex_time64),
|
||||||
|
#endif
|
||||||
#ifdef __NR_geteuid
|
#ifdef __NR_geteuid
|
||||||
SC_ALLOW(__NR_geteuid),
|
SC_ALLOW(__NR_geteuid),
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue