Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\seccomp.c Create Date:2022-07-28 11:46:27
Last Modify:2022-05-19 16:58:48 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:audit_actions_logged

Proto:static void audit_actions_logged(unsigned int actions_logged, unsigned int old_actions_logged, int ret)

Type:void

Parameter:

TypeParameterName
unsigned intactions_logged
unsigned intold_actions_logged
intret
1746  new = names
1747  old = old_names
1749  If Not audit_enabled Then Return
1752  memset(names, 0, size of names )
1753  memset(old_names, 0, size of old_names )
1755  If ret Then new = "?"
1757  Else if Not actions_logged Then new = "(none)"
1759  Else if Not seccomp_names_from_actions_logged(names, size of names , actions_logged, ",") Then new = "?"
1763  If Not old_actions_logged Then old = "(none)"
1765  Else if Not seccomp_names_from_actions_logged(old_names, size of old_names , old_actions_logged, ",") Then old = "?"
1770  Return audit_seccomp_actions_logged(new, old, !ret)
Caller
NameDescribe
seccomp_actions_logged_handler