The patch titled Subject: mm/kmemleak.c: fix unused-function warning has been added to the -mm tree. Its filename is kmemleak-fix-unused-function-warning.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kmemleak-fix-unused-function-warning.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kmemleak-fix-unused-function-warning.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: Arnd Bergmann <arnd@xxxxxxxx> Subject: mm/kmemleak.c: fix unused-function warning The only references outside of the #ifdef have been removed, so now we get a warning in non-SMP configurations: mm/kmemleak.c:1404:13: error: unused function 'scan_large_block' [-Werror,-Wunused-function] Add a new #ifdef around it. Link: http://lkml.kernel.org/r/20190416123148.3502045-1-arnd@xxxxxxxx Fixes: 298a32b13208 ("kmemleak: powerpc: skip scanning holes in the .bss section") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Acked-by: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Vincent Whitchurch <vincent.whitchurch@xxxxxxxx> Cc: Michael Ellerman <mpe@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kmemleak.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/kmemleak.c~kmemleak-fix-unused-function-warning +++ a/mm/kmemleak.c @@ -1401,6 +1401,7 @@ static void scan_block(void *_start, voi /* * Scan a large memory block in MAX_SCAN_SIZE chunks to reduce the latency. */ +#ifdef CONFIG_SMP static void scan_large_block(void *start, void *end) { void *next; @@ -1412,6 +1413,7 @@ static void scan_large_block(void *start cond_resched(); } } +#endif /* * Scan a memory block corresponding to a kmemleak_object. A condition is _ Patches currently in -mm which might be from arnd@xxxxxxxx are kmemleak-fix-unused-function-warning.patch fs-select-avoid-clang-stack-usage-warning.patch