MN10300: Save frame pointer in thread_info struct rather than global var
Save the current exception frame pointer in the thread_info struct rather than in a global variable as the latter makes SMP tricky, especially when preemption is also enabled. This also replaces __frame with current_frame() and rearranges header file inclusions to make it all compile. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
This commit is contained in:
@@ -93,19 +93,6 @@ extern int __cpu_disable(void);
|
||||
extern void __cpu_die(unsigned int cpu);
|
||||
#endif /* CONFIG_HOTPLUG_CPU */
|
||||
|
||||
#ifdef CONFIG_PREEMPT /* FIXME */
|
||||
#define __frame \
|
||||
({ \
|
||||
struct pt_regs *f; \
|
||||
preempt_disable(); \
|
||||
f = ___frame[CPUID]; \
|
||||
preempt_enable(); \
|
||||
f; \
|
||||
})
|
||||
#else
|
||||
#define __frame ___frame[CPUID]
|
||||
#endif
|
||||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
#else /* CONFIG_SMP */
|
||||
#ifndef __ASSEMBLY__
|
||||
|
Reference in New Issue
Block a user