Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\kernel\check.c Create Date:2022-07-28 08:46:39
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:set_corruption_check_period

Proto:static __init int set_corruption_check_period(char *arg)

Type:int

Parameter:

TypeParameterName
char *arg
58  If Not arg Then
59  pr_err("memory_corruption_check_period config string not provided\n")
60  Return -EINVAL
63  ret = kstrtoul - convert a string to an unsigned long*@s: The start of the string. The string must be null-terminated, and may also* include a single newline before its terminating null. The first character* may also be a plus sign, but not a minus sign.
64  If ret Then Return ret
67  seconds = val
68  Return 0