The quilt patch titled Subject: kstrtox: remove strtobool() has been removed from the -mm tree. Its filename was kstrtox-remove-strtobool.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: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx> Subject: kstrtox: remove strtobool() Date: Sat, 16 Sep 2023 17:50:11 +0200 The conversion from strtobool() to kstrtobool() is completed. So strtobool() can now be removed. Link: https://lkml.kernel.org/r/87e3cc2547df174cd5af1fadbf866be4ef9e8e45.1694878151.git.christophe.jaillet@xxxxxxxxxx Signed-off-by: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx> Reviewed-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kstrtox.h | 5 ----- 1 file changed, 5 deletions(-) --- a/include/linux/kstrtox.h~kstrtox-remove-strtobool +++ a/include/linux/kstrtox.h @@ -147,9 +147,4 @@ extern long simple_strtol(const char *,c extern unsigned long long simple_strtoull(const char *,char **,unsigned int); extern long long simple_strtoll(const char *,char **,unsigned int); -static inline int strtobool(const char *s, bool *res) -{ - return kstrtobool(s, res); -} - #endif /* _LINUX_KSTRTOX_H */ _ Patches currently in -mm which might be from christophe.jaillet@xxxxxxxxxx are