aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@sw.ru>2007-10-16 04:23:45 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 12:42:49 -0400
commit1bcf548293aef19b0797348332cf1dfbf2116cef (patch)
tree80b2535e3dd2a6d23c15b91e10cae227310a44ee /arch/m68k
parente6716b87d5c9edf19c711212785cd30c6ec21868 (diff)
Consolidate PTRACE_DETACH
Identical handlers of PTRACE_DETACH go into ptrace_request(). Not touching compat code. Not touching archs that don't call ptrace_request. Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru> Acked-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r--arch/m68k/kernel/ptrace.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/m68k/kernel/ptrace.c b/arch/m68k/kernel/ptrace.c
index e792d3cba4c7..2075543c2d92 100644
--- a/arch/m68k/kernel/ptrace.c
+++ b/arch/m68k/kernel/ptrace.c
@@ -226,10 +226,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
226 wake_up_process(child); 226 wake_up_process(child);
227 break; 227 break;
228 228
229 case PTRACE_DETACH: /* detach a process that was attached. */
230 ret = ptrace_detach(child, data);
231 break;
232
233 case PTRACE_GETREGS: /* Get all gp regs from the child. */ 229 case PTRACE_GETREGS: /* Get all gp regs from the child. */
234 for (i = 0; i < 19; i++) { 230 for (i = 0; i < 19; i++) {
235 tmp = get_reg(child, i); 231 tmp = get_reg(child, i);