[PATCH 0/2] Fix v3.10-rc6 failures in ia64 and mn10300

2013-06-16 Thread ddaney . cavm
From: David Daney My patch f21afc25f (smp.h: Use local_irq_{save,restore}() in !SMP version of on_each_cpu().) seems to have broken ia64 and mn10300. We can fix the breakage by resolving the unmet include dependencies. David Daney (2): ia64: Fix include dependency in asm/irqflags.h mn10300:

[PATCH 2/2] mn10300: Fix include dependency in irqflags.h

2013-06-16 Thread ddaney . cavm
From: David Daney We need to pick up the definition of raw_smp_processor_id() from asm/smp.h. For the !SMP case, we need to supply a definition of raw_smp_processor_id(). Signed-off-by: David Daney --- arch/mn10300/include/asm/irqflags.h | 3 ++- arch/mn10300/include/asm/smp.h | 1 + 2 f

[PATCH 1/2] ia64: Fix include dependency in asm/irqflags.h

2013-06-16 Thread ddaney . cavm
From: David Daney asm/kregs.h isn't always included first, so we need an explicit include. Signed-off-by: David Daney --- arch/ia64/include/asm/irqflags.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/ia64/include/asm/irqflags.h b/arch/ia64/include/asm/irqflags.h index 1bf2cf2..cec6

[PATCH v2] mn10300: Fix include dependency in irqflags.h et al.

2013-06-17 Thread ddaney . cavm
From: David Daney We need to pick up the definition of raw_smp_processor_id() from asm/smp.h. For the !SMP case, we need to supply a definition of raw_smp_processor_id(). Because of the include dependencies we cannot use smp_call_func_t in asm/smp.h, but we do need linux/thread_info.h Signed-o