diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-10-16 04:23:45 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:42:49 -0400 |
commit | 1bcf548293aef19b0797348332cf1dfbf2116cef (patch) | |
tree | 80b2535e3dd2a6d23c15b91e10cae227310a44ee /arch/avr32/kernel/ptrace.c | |
parent | e6716b87d5c9edf19c711212785cd30c6ec21868 (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/avr32/kernel/ptrace.c')
-rw-r--r-- | arch/avr32/kernel/ptrace.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/avr32/kernel/ptrace.c b/arch/avr32/kernel/ptrace.c index 39060cbeb2a3..9e16b8a447f2 100644 --- a/arch/avr32/kernel/ptrace.c +++ b/arch/avr32/kernel/ptrace.c | |||
@@ -227,11 +227,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
227 | ret = 0; | 227 | ret = 0; |
228 | break; | 228 | break; |
229 | 229 | ||
230 | /* Detach a process that was attached */ | ||
231 | case PTRACE_DETACH: | ||
232 | ret = ptrace_detach(child, data); | ||
233 | break; | ||
234 | |||
235 | case PTRACE_GETREGS: | 230 | case PTRACE_GETREGS: |
236 | ret = ptrace_getregs(child, (void __user *)data); | 231 | ret = ptrace_getregs(child, (void __user *)data); |
237 | break; | 232 | break; |