aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68knommu/platform
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m68knommu/platform')
-rw-r--r--arch/m68knommu/platform/coldfire/entry.S16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/m68knommu/platform/coldfire/entry.S b/arch/m68knommu/platform/coldfire/entry.S
index 111b66dc737b..1af7c1d650f6 100644
--- a/arch/m68knommu/platform/coldfire/entry.S
+++ b/arch/m68knommu/platform/coldfire/entry.S
@@ -106,6 +106,22 @@ ret_from_exception:
106 btst #5,%sp@(PT_SR) /* check if returning to kernel */ 106 btst #5,%sp@(PT_SR) /* check if returning to kernel */
107 jeq Luser_return /* if so, skip resched, signals */ 107 jeq Luser_return /* if so, skip resched, signals */
108 108
109#ifdef CONFIG_PREEMPT
110 movel %sp,%d1 /* get thread_info pointer */
111 andl #-THREAD_SIZE,%d1 /* at base of kernel stack */
112 movel %d1,%a0
113 movel %a0@(TI_FLAGS),%d1 /* get thread_info->flags */
114 andl #_TIF_NEED_RESCHED,%d1
115 jeq Lkernel_return
116
117 movel %a0@(TI_PREEMPTCOUNT),%d1
118 cmpl #0,%d1
119 jne Lkernel_return
120
121 pea Lkernel_return
122 jmp preempt_schedule_irq /* preempt the kernel */
123#endif
124
109Lkernel_return: 125Lkernel_return:
110 moveml %sp@,%d1-%d5/%a0-%a2 126 moveml %sp@,%d1-%d5/%a0-%a2
111 lea %sp@(32),%sp /* space for 8 regs */ 127 lea %sp@(32),%sp /* space for 8 regs */