Lines Matching refs:action
634 static inline void seccomp_log(unsigned long syscall, long signr, u32 action, in seccomp_log() argument
639 switch (action) { in seccomp_log()
674 audit_seccomp(syscall, signr, action); in seccomp_log()
790 u32 filter_ret, action; in __seccomp_filter() local
808 action = filter_ret & SECCOMP_RET_ACTION_FULL; in __seccomp_filter()
810 switch (action) { in __seccomp_filter()
874 seccomp_log(this_syscall, 0, action, true); in __seccomp_filter()
888 seccomp_log(this_syscall, SIGSYS, action, true); in __seccomp_filter()
890 if (action == SECCOMP_RET_KILL_PROCESS || in __seccomp_filter()
900 if (action == SECCOMP_RET_KILL_PROCESS) in __seccomp_filter()
909 seccomp_log(this_syscall, 0, action, match ? match->log : false); in __seccomp_filter()
1350 u32 action; in seccomp_get_action_avail() local
1352 if (copy_from_user(&action, uaction, sizeof(action))) in seccomp_get_action_avail()
1355 switch (action) { in seccomp_get_action_avail()