The patch titled arm: fix hard_smp_processor_id compile error has been removed from the -mm tree. Its filename was arm-fix-hard_smp_processor_id-compile-error.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: arm: 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 ARM as the definition was not added to asm-arm/smp.h. Cc: Fernando Luis Vazquez Cao <fernando@xxxxxxxxxxxxx> Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/arm/mach-integrator/core.c | 1 + include/asm-arm/smp.h | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff -puN arch/arm/mach-integrator/core.c~arm-fix-hard_smp_processor_id-compile-error arch/arm/mach-integrator/core.c --- a/arch/arm/mach-integrator/core.c~arm-fix-hard_smp_processor_id-compile-error +++ a/arch/arm/mach-integrator/core.c @@ -28,6 +28,7 @@ #include <asm/system.h> #include <asm/leds.h> #include <asm/mach/time.h> +#include <asm/smp.h> #include "common.h" diff -puN include/asm-arm/smp.h~arm-fix-hard_smp_processor_id-compile-error include/asm-arm/smp.h --- a/include/asm-arm/smp.h~arm-fix-hard_smp_processor_id-compile-error +++ a/include/asm-arm/smp.h @@ -10,16 +10,16 @@ #ifndef __ASM_ARM_SMP_H #define __ASM_ARM_SMP_H +#ifndef CONFIG_SMP +#define hard_smp_processor_id() 0 +#else + #include <linux/threads.h> #include <linux/cpumask.h> #include <linux/thread_info.h> #include <asm/arch/smp.h> -#ifndef CONFIG_SMP -# error "<asm-arm/smp.h> included in non-SMP build" -#endif - #define raw_smp_processor_id() (current_thread_info()->cpu) /* @@ -134,4 +134,6 @@ extern void show_local_irqs(struct seq_f */ asmlinkage void do_local_timer(struct pt_regs *); +#endif /* CONFIG_SMP */ + #endif /* ifndef __ASM_ARM_SMP_H */ _ 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