The patch titled Subject: kstrtox: consistently use _tolower() has been added to the -mm mm-nonmm-unstable branch. Its filename is kstrtox-consistently-use-_tolower.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/kstrtox-consistently-use-_tolower.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Subject: kstrtox: consistently use _tolower() Date: Thu, 17 Aug 2023 17:59:19 +0300 We already use _tolower() in other places, so convert the one which open codes it. Link: https://lkml.kernel.org/r/20230817145919.543251-1-andriy.shevchenko@xxxxxxxxxxxxxxx Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/kstrtox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/kstrtox.c~kstrtox-consistently-use-_tolower +++ a/lib/kstrtox.c @@ -59,7 +59,7 @@ unsigned int _parse_integer_limit(const rv = 0; while (max_chars--) { unsigned int c = *s; - unsigned int lc = c | 0x20; /* don't tolower() this line */ + unsigned int lc = _tolower(c); unsigned int val; if ('0' <= c && c <= '9') _ Patches currently in -mm which might be from andriy.shevchenko@xxxxxxxxxxxxxxx are lib-vsprintf-split-out-sprintf-and-friends.patch lib-vsprintf-declare-no_hash_pointers-in-sprintfh.patch kstrtox-consistently-use-_tolower.patch