The patch titled Subject: mm/rodata_test.c: fix missing function declaration has been added to the -mm tree. Its filename is mm-fix-missing-function-declaration.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-fix-missing-function-declaration.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-fix-missing-function-declaration.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Leon Romanovsky <leonro@xxxxxxxxxx> Subject: mm/rodata_test.c: fix missing function declaration The compilation with CONFIG_DEBUG_RODATA_TEST set produces the following warning due to the missing include. mm/rodata_test.c:15:6: warning: no previous prototype for 'rodata_test' [-Wmissing-prototypes] 15 | void rodata_test(void) | ^~~~~~~~~~~ Link: https://lkml.kernel.org/r/20200819080026.918134-1-leon@xxxxxxxxxx Fixes: 2959a5f726f6 ("mm: add arch-independent testcases for RODATA") Signed-off-by: Leon Romanovsky <leonro@xxxxxxxxxx> Reviewed-by: Anshuman Khandual <anshuman.khandual@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/rodata_test.c | 1 + 1 file changed, 1 insertion(+) --- a/mm/rodata_test.c~mm-fix-missing-function-declaration +++ a/mm/rodata_test.c @@ -7,6 +7,7 @@ */ #define pr_fmt(fmt) "rodata_test: " fmt +#include <linux/rodata_test.h> #include <linux/uaccess.h> #include <asm/sections.h> _ Patches currently in -mm which might be from leonro@xxxxxxxxxx are mm-fix-missing-function-declaration.patch