Thread (16 messages) 16 messages, 3 authors, 2016-02-05
STALE3766d
Revisions (3)
  1. v1 [diff vs current]
  2. v2 current
  3. v3 [diff vs current]

[PATCH v2 3/4] lib: add "on"/"off" support to kstrtobool

From: Kees Cook <hidden>
Date: 2016-02-04 21:00:54
Also in: linux-cifs, linux-s390, linuxppc-dev, lkml, netdev
Subsystem: library code, the rest · Maintainers: Andrew Morton, Linus Torvalds

Add support for "on" and "off" when converting to boolean.

Signed-off-by: Kees Cook <redacted>
---
 lib/kstrtox.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
diff --git a/lib/kstrtox.c b/lib/kstrtox.c
index e18f088704d7..09e83a19a96d 100644
--- a/lib/kstrtox.c
+++ b/lib/kstrtox.c
@@ -347,6 +347,20 @@ int kstrtobool(const char *s, unsigned int base, bool *res)
 	case '0':
 		*res = false;
 		return 0;
+	case 'o':
+	case 'O':
+		switch (s[1]) {
+		case 'n':
+		case 'N':
+			*res = true;
+			return 0;
+		case 'f':
+		case 'F':
+			*res = false;
+			return 0;
+		default:
+			break;
+		}
 	default:
 		break;
 	}
-- 
2.6.3
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help