The quilt patch titled Subject: kstrtox: consistently use _tolower() has been removed from the -mm tree. Its filename was kstrtox-consistently-use-_tolower.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ 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