The patch titled alpha: fix hard_smp_processor_id compile error has been removed from the -mm tree. Its filename was alpha-fix-hard_smp_processor_id-compile-error.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: alpha: fix hard_smp_processor_id compile error From: Simon Horman <horms@xxxxxxxxxxxx> "Remove hardcoding of hard_smp_processor_id on UP systems", 2f4dfe206a2fc07099dfad77a8ea2f4b4ae2140f in Linus' tree, moved the definition of hard_smp_processor_id linux/smp.h to asm/smp.h for UP systems. This causes a regression on Alpha. cc1: warnings being treated as errors arch/alpha/kernel/setup.c: In function 'setup_arch': arch/alpha/kernel/setup.c:506: warning: implicit declaration of function 'hard_smp_processor_id' make[1]: *** [arch/alpha/kernel/setup.o] error 1 make: *** [arch/alpha/kernel] error 2 By including asm/smp.h non-conditionally in asm/mmu_context.h the problem appears to be resolved. Cc: Fernando Luis Vazquez Cao <fernando@xxxxxxxxxxxxx> Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx> Cc: Richard Henderson <rth@xxxxxxxxxxx> Cc: Ivan Kokshaysky <ink@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-alpha/mmu_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-alpha/mmu_context.h~alpha-fix-hard_smp_processor_id-compile-error include/asm-alpha/mmu_context.h --- a/include/asm-alpha/mmu_context.h~alpha-fix-hard_smp_processor_id-compile-error +++ a/include/asm-alpha/mmu_context.h @@ -85,8 +85,8 @@ __reload_thread(struct pcb_struct *pcb) * +-------------+----------------+--------------+ */ -#ifdef CONFIG_SMP #include <asm/smp.h> +#ifdef CONFIG_SMP #define cpu_last_asn(cpuid) (cpu_data[cpuid].last_asn) #else extern unsigned long last_asn; _ Patches currently in -mm which might be from horms@xxxxxxxxxxxx are origin.patch arm-fix-hard_smp_processor_id-compile-error.patch git-ia64.patch use-menuconfig-objects-ipvs.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