The patch titled Subject: kbuild: fix -Wimplicit-function-declaration in license_is_gpl_compatible has been added to the -mm mm-hotfixes-unstable branch. Its filename is kbuild-fix-wimplicit-function-declaration-in-license_is_gpl_compatible.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/kbuild-fix-wimplicit-function-declaration-in-license_is_gpl_compatible.patch This patch will later appear in the mm-hotfixes-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: Sam James <sam@xxxxxxxxxx> Subject: kbuild: fix -Wimplicit-function-declaration in license_is_gpl_compatible Date: Wed, 16 Nov 2022 18:26:34 +0000 Add missing <string.h> include for strcmp. Clang 16 makes -Wimplicit-function-declaration an error by default. Unfortunately, out of tree modules may use this in configure scripts, which means failure might cause silent miscompilation or misconfiguration. For more information, see LWN.net [0] or LLVM's Discourse [1], gentoo-dev@ [2], or the (new) c-std-porting mailing list [3]. [0] https://lwn.net/Articles/913505/ [1] https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213 [2] https://archives.gentoo.org/gentoo-dev/message/dd9f2d3082b8b6f8dfbccb0639e6e240 [3] hosted at lists.linux.dev. Link: https://lkml.kernel.org/r/20221116182634.2823136-1-sam@xxxxxxxxxx Signed-off-by: Sam James <sam@xxxxxxxxxx> Cc: <stable@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/license.h | 2 ++ 1 file changed, 2 insertions(+) --- a/include/linux/license.h~kbuild-fix-wimplicit-function-declaration-in-license_is_gpl_compatible +++ a/include/linux/license.h @@ -2,6 +2,8 @@ #ifndef __LICENSE_H #define __LICENSE_H +#include <string.h> + static inline int license_is_gpl_compatible(const char *license) { return (strcmp(license, "GPL") == 0 _ Patches currently in -mm which might be from sam@xxxxxxxxxx are kbuild-fix-wimplicit-function-declaration-in-license_is_gpl_compatible.patch