The patch titled Subject: alpha: fix build failures has been added to the -mm tree. Its filename is alpha-fix-build-failures.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/alpha-fix-build-failures.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/alpha-fix-build-failures.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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Subject: alpha: fix build failures The build of alpha allmodconfig is giving error: arch/alpha/include/asm/mmu_context.h: In function 'ev5_switch_mm': arch/alpha/include/asm/mmu_context.h:160:2: error: implicit declaration of function 'task_thread_info'; did you mean 'init_thread_info'? [-Werror=implicit-function-declaration] The file 'mmu_context.h' needed an extra header file. Link: http://lkml.kernel.org/r/1505668810-7497-1-git-send-email-sudipm.mukherjee@xxxxxxxxx Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Cc: Richard Henderson <rth@xxxxxxxxxxx> Cc: Ivan Kokshaysky <ink@xxxxxxxxxxxxxxxxxxxx> Cc: Matt Turner <mattst88@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/alpha/include/asm/mmu_context.h | 1 + 1 file changed, 1 insertion(+) diff -puN arch/alpha/include/asm/mmu_context.h~alpha-fix-build-failures arch/alpha/include/asm/mmu_context.h --- a/arch/alpha/include/asm/mmu_context.h~alpha-fix-build-failures +++ a/arch/alpha/include/asm/mmu_context.h @@ -8,6 +8,7 @@ */ #include <linux/mm_types.h> +#include <linux/sched.h> #include <asm/machvec.h> #include <asm/compiler.h> _ Patches currently in -mm which might be from sudipm.mukherjee@xxxxxxxxx are alpha-fix-build-failures.patch m32r-define-cpu_big_endian.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