Home
last modified time | relevance | path

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

/Linux-v5.4/include/uapi/linux/
Dseccomp.h35 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
/Linux-v5.4/kernel/
Dseccomp.c264 return SECCOMP_RET_KILL_PROCESS; in seccomp_run_filters()
660 case SECCOMP_RET_KILL_PROCESS: in seccomp_log()
886 case SECCOMP_RET_KILL_PROCESS: in __seccomp_filter()
890 if (action == SECCOMP_RET_KILL_PROCESS || in __seccomp_filter()
900 if (action == SECCOMP_RET_KILL_PROCESS) in __seccomp_filter()
1349 case SECCOMP_RET_KILL_PROCESS: in seccomp_get_action_avail()
/Linux-v5.4/Documentation/userspace-api/
Dseccomp_filter.rst90 ``SECCOMP_RET_KILL_PROCESS`` will always take precedence.)
94 ``SECCOMP_RET_KILL_PROCESS``:
/Linux-v5.4/tools/testing/selftests/seccomp/
Dseccomp_bpf.c91 #ifndef SECCOMP_RET_KILL_PROCESS
92 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
704 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL_PROCESS), in kill_thread_or_group()