The patch titled Subject: lib-add-on-off-support-to-kstrtobool fix has been removed from the -mm tree. Its filename was lib-add-on-off-support-to-kstrtobool-fix.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Kees Cook <keescook@xxxxxxxxxxxx> Subject: lib-add-on-off-support-to-kstrtobool fix Accidentally dropped description update when shuffling strtobool around. Signed-off-by: Kees Cook <keescook@xxxxxxxxxxxx> Suggested-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/kstrtox.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN lib/kstrtox.c~lib-add-on-off-support-to-kstrtobool-fix lib/kstrtox.c --- a/lib/kstrtox.c~lib-add-on-off-support-to-kstrtobool-fix +++ a/lib/kstrtox.c @@ -327,9 +327,9 @@ EXPORT_SYMBOL(kstrtos8); * @base: ignored * @res: result * - * This routine returns 0 iff the first character is one of 'Yy1Nn0'. - * Otherwise it will return -EINVAL. Value pointed to by res is - * updated upon finding a match. + * This routine returns 0 iff the first character is one of 'Yy1Nn0', or + * [oO][NnFf] for "on" and "off". Otherwise it will return -EINVAL. Value + * pointed to by res is updated upon finding a match. */ int kstrtobool(const char *s, unsigned int base, bool *res) { _ Patches currently in -mm which might be from keescook@xxxxxxxxxxxx are param-convert-some-on-off-users-to-strtobool.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html