提交 597da28e 编写于 作者: D Dr. David Alan Gilbert 提交者: Linus Torvalds

mm/page_table_check.c: use strtobool for param parsing

Use strtobool rather than open coding "on" and "off" parsing.

Link: https://lkml.kernel.org/r/20220227181038.126926-1-linux@treblig.orgSigned-off-by: NDr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 7a3f2263
...@@ -23,15 +23,7 @@ EXPORT_SYMBOL(page_table_check_disabled); ...@@ -23,15 +23,7 @@ EXPORT_SYMBOL(page_table_check_disabled);
static int __init early_page_table_check_param(char *buf) static int __init early_page_table_check_param(char *buf)
{ {
if (!buf) return strtobool(buf, &__page_table_check_enabled);
return -EINVAL;
if (strcmp(buf, "on") == 0)
__page_table_check_enabled = true;
else if (strcmp(buf, "off") == 0)
__page_table_check_enabled = false;
return 0;
} }
early_param("page_table_check", early_page_table_check_param); early_param("page_table_check", early_page_table_check_param);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册