Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:security\integrity\iint.c Create Date:2022-07-28 19:56:03
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:integrity_fs_init

Proto:static int __init integrity_fs_init(void)

Type:int

Parameter:Nothing

220  integrity_dir = securityfs_create_dir - create a directory in the securityfs filesystem*@name: a pointer to a string containing the name of the directory to* create.*@parent: a pointer to the parent dentry for this file. This should be a* directory dentry if set
221  If IS_ERR(integrity_dir) Then
222  ret = PTR_ERR(integrity_dir)
224  If ret != -ENODEV Then pr_err("Unable to create integrity sysfs dir: %d\n", ret)
227  integrity_dir = NULL
228  Return ret
231  Return 0