函数源码 |
Source File:arch\x86\kernel\check.c |
Create Date:2022-07-27 09:45:51 |
首页 | Copyright©Brick |
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | static __init int set_corruption_check_period( char *arg) { ssize_t ret; unsigned long val; if (!arg) { pr_err( "memory_corruption_check_period config string not provided\n" ); return -EINVAL; } ret = kstrtoul(arg, 10, &val); if (ret) return ret; corruption_check_period = val; return 0; } |