Home
last modified time | relevance | path

Searched refs:seccomp_phase1 (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/include/linux/
Dseccomp.h42 extern u32 seccomp_phase1(struct seccomp_data *sd);
/linux-4.4.14/arch/
DKconfig338 For best performance, an arch should use seccomp_phase1 and
339 seccomp_phase2 directly. It should call seccomp_phase1 for all
340 syscalls if TIF_SECCOMP is set, but seccomp_phase1 does not
342 call seccomp_phase2 if seccomp_phase1 returns anything other
346 directly to seccomp_phase1; this avoids multiple calls
/linux-4.4.14/kernel/
Dseccomp.c566 u32 phase1_result = seccomp_phase1(NULL); in __secure_computing()
651 u32 seccomp_phase1(struct seccomp_data *sd) in seccomp_phase1() function
/linux-4.4.14/arch/x86/entry/
Dcommon.c132 ret = seccomp_phase1(&sd); in syscall_trace_enter_phase1()