View | Details | Raw Unified | Return to bug 3260 | Differences between
and this patch

Collapse All | Expand All

(-)a/sandbox-seccomp-filter.c (-1 / +6 lines)
Lines 204-209 static const struct sock_filter preauth_insns[] = { Link Here
204
#ifdef __NR_futex
204
#ifdef __NR_futex
205
	SC_ALLOW(__NR_futex),
205
	SC_ALLOW(__NR_futex),
206
#endif
206
#endif
207
#ifdef __NR_futex
208
	SC_ALLOW(__NR_futex_time64),
209
#endif
207
#ifdef __NR_geteuid
210
#ifdef __NR_geteuid
208
	SC_ALLOW(__NR_geteuid),
211
	SC_ALLOW(__NR_geteuid),
209
#endif
212
#endif
Lines 267-272 static const struct sock_filter preauth_insns[] = { Link Here
267
#ifdef __NR_pselect6
270
#ifdef __NR_pselect6
268
	SC_ALLOW(__NR_pselect6),
271
	SC_ALLOW(__NR_pselect6),
269
#endif
272
#endif
273
#ifdef __NR_pselect6_time64
274
	SC_ALLOW(__NR_pselect6_time64),
275
#endif
270
#ifdef __NR_read
276
#ifdef __NR_read
271
	SC_ALLOW(__NR_read),
277
	SC_ALLOW(__NR_read),
272
#endif
278
#endif
273
- 

Return to bug 3260