函数源码 |
Source File:security\integrity\integrity_audit.c |
Create Date:2022-07-27 21:53:25 |
首页 | Copyright©Brick |
16 17 18 19 20 21 22 23 24 | /* ima_audit_setup - enable informational auditing messages */ static int __init integrity_audit_setup( char *str) { unsigned long audit; if (!kstrtoul(str, 0, &audit)) integrity_audit_info = audit ? 1 : 0; return 1; } |