Hi Andrew, After merging the akpm tree, today's linux-next build (powerpc ppc64_defconfig) failed like this: fs/binfmt_elf.c: In function 'fill_files_note': fs/binfmt_elf.c:1419:2: error: implicit declaration of function 'vmalloc' [-Werror=implicit-function-declaration] fs/binfmt_elf.c:1419:7: warning: assignment makes pointer from integer without a cast [enabled by default] fs/binfmt_elf.c:1437:5: error: implicit declaration of function 'vfree' [-Werror=implicit-function-declaration] Caused by commit "coredump: extend core dump note section to contain file names of mapped files". Forgot to include vmalloc.h :-( I added this patch for today: From: Stephen Rothwell Date: Fri, 21 Sep 2012 16:06:18 +1000 Subject: [PATCH] coredump: using vmalloc requires the inclusion of vmalloc.h Signed-off-by: Stephen Rothwell --- fs/binfmt_elf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index 0973943..5ac905f 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include -- 1.7.10.280.gaa39 -- Cheers, Stephen Rothwell sfr@canb.auug.org.au