]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
kstrtox: add support for enabled and disabled in kstrtobool()
authorMario Limonciello <mario.limonciello@amd.com>
Fri, 21 Mar 2025 02:25:01 +0000 (21:25 -0500)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 12 May 2025 00:54:06 +0000 (17:54 -0700)
commitae5b3500856fb9a565470d83033bb91786ec16f1
treec5dfb6c65eade2892fca7e070fe7fe2fed059c30
parent029c896c4105b7d74fcd88d99c5fbab2558fee89
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>
lib/kstrtox.c