mirror of
https://github.com/torvalds/linux.git
synced 2025-08-15 06:01:56 +02:00
kstrtox: add support for enabled and disabled in kstrtobool()
In some places in the kernel there is a design pattern for sysfs attributes to use kstrtobool() in store() and str_enabled_disabled() in show(). This is counterintuitive to interact with because kstrtobool() takes on/off but str_enabled_disabled() shows enabled/disabled. Some of those sysfs uses could switch to str_on_off() but for some attributes enabled/disabled really makes more sense. Add support for kstrtobool() to accept enabled/disabled. Link: https://lkml.kernel.org/r/20250321022538.1532445-1-superm1@kernel.org Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
029c896c41
commit
ae5b350085
1 changed files with 4 additions and 0 deletions
|
@ -351,6 +351,8 @@ int kstrtobool(const char *s, bool *res)
|
|||
return -EINVAL;
|
||||
|
||||
switch (s[0]) {
|
||||
case 'e':
|
||||
case 'E':
|
||||
case 'y':
|
||||
case 'Y':
|
||||
case 't':
|
||||
|
@ -358,6 +360,8 @@ int kstrtobool(const char *s, bool *res)
|
|||
case '1':
|
||||
*res = true;
|
||||
return 0;
|
||||
case 'd':
|
||||
case 'D':
|
||||
case 'n':
|
||||
case 'N':
|
||||
case 'f':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue