Home
last modified time | relevance | path

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

/Linux-v4.19/include/uapi/linux/
Dseccomp.h33 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
/Linux-v4.19/kernel/
Dseccomp.c199 return SECCOMP_RET_KILL_PROCESS; in seccomp_run_filters()
590 case SECCOMP_RET_KILL_PROCESS: in seccomp_log()
744 case SECCOMP_RET_KILL_PROCESS: in __seccomp_filter()
748 if (action == SECCOMP_RET_KILL_PROCESS || in __seccomp_filter()
758 if (action == SECCOMP_RET_KILL_PROCESS) in __seccomp_filter()
910 case SECCOMP_RET_KILL_PROCESS: in seccomp_get_action_avail()
/Linux-v4.19/Documentation/userspace-api/
Dseccomp_filter.rst90 ``SECCOMP_RET_KILL_PROCESS`` will always take precedence.)
94 ``SECCOMP_RET_KILL_PROCESS``:
/Linux-v4.19/tools/testing/selftests/seccomp/
Dseccomp_bpf.c88 #ifndef SECCOMP_RET_KILL_PROCESS
89 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
654 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL_PROCESS), in kill_thread_or_group()