diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-02 22:57:30 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-01-07 08:01:34 -0500 |
commit | 9e4930dbf17c1eba72631cd52a0c621da3d1a816 (patch) | |
tree | 0ac397df063473dd4990dd41d4ed76ed5cb2d643 /arch/m68k/kernel/entry.S | |
parent | e68847fee706c6fe74c9afc3288c3adfc131b1fa (diff) |
m68k: Simplify the singlestepping handling in signals
Instead of checking the return value of do_signal() we can just do
the work (raise SIGTRAP and clear SR.T1) directly in handle_signal(),
when setting the sigframe up. Simplifies the assembler glue and is
closer to the way we do it on other targets.
Note that do_delayed_trace does *not* disappear; it's still needed
to deal with single-stepping through syscall, since 68040 doesn't
raise the trace exception at all if the trap exception is pending.
We hit it after returning from sys_...() if TIF_DELAYED_TRACE is
set; all that has changed is that we don't reuse it for "single-step
into the handler" codepath.
As the result, do_signal() doesn't need to return anything anymore.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/kernel/entry.S')
-rw-r--r-- | arch/m68k/kernel/entry.S | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 3a15a03297a7..4e49f5777696 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S | |||
@@ -178,11 +178,7 @@ do_signal_return: | |||
178 | addql #4,%sp | 178 | addql #4,%sp |
179 | RESTORE_SWITCH_STACK | 179 | RESTORE_SWITCH_STACK |
180 | addql #4,%sp | 180 | addql #4,%sp |
181 | tstl %d0 | 181 | jbra resume_userspace |
182 | jeq resume_userspace | ||
183 | | when single stepping into handler stop at the first insn | ||
184 | btst #6,%curptr@(TASK_INFO+TINFO_FLAGS+2) | ||
185 | jeq resume_userspace | ||
186 | 182 | ||
187 | do_delayed_trace: | 183 | do_delayed_trace: |
188 | bclr #7,%sp@(PT_OFF_SR) | clear trace bit in SR | 184 | bclr #7,%sp@(PT_OFF_SR) | clear trace bit in SR |