The patch titled Subject: mempool: add missing include has been removed from the -mm tree. Its filename was mm-mempool-poison-elements-backed-by-page-allocator-fix-fix-fix.patch This patch was dropped because it was folded into mm-mempool-poison-elements-backed-by-slab-allocator.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: mempool: add missing include This is a fix^3 for the mempool poisoning patch, which introduces a compile-time error on some ARM randconfig builds: mm/mempool.c: In function 'check_element': mm/mempool.c:65:16: error: implicit declaration of function 'kmap_atomic' [-Werror=implicit-function-declaration] void *addr = kmap_atomic((struct page *)element); The problem is clearly the missing declaration, and including linux/highmem.h fixes it. Fixes: a3db5a8463b0db ("mm, mempool: poison elements backed by page allocator fix fix") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Acked-by: David Rientjes <rientjes@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/mempool.c | 1 + 1 file changed, 1 insertion(+) diff -puN mm/mempool.c~mm-mempool-poison-elements-backed-by-page-allocator-fix-fix-fix mm/mempool.c --- a/mm/mempool.c~mm-mempool-poison-elements-backed-by-page-allocator-fix-fix-fix +++ a/mm/mempool.c @@ -11,6 +11,7 @@ #include <linux/mm.h> #include <linux/slab.h> +#include <linux/highmem.h> #include <linux/kmemleak.h> #include <linux/export.h> #include <linux/mempool.h> _ Patches currently in -mm which might be from arnd@xxxxxxxx are origin.patch mm-mempool-poison-elements-backed-by-slab-allocator.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html