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/um/kernel | |
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/um/kernel')
-rw-r--r-- | arch/um/kernel/ptrace.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/um/kernel/ptrace.c b/arch/um/kernel/ptrace.c index 6916c8888dba..36debc0de594 100644 --- a/arch/um/kernel/ptrace.c +++ b/arch/um/kernel/ptrace.c | |||
@@ -119,11 +119,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
119 | break; | 119 | break; |
120 | } | 120 | } |
121 | 121 | ||
122 | case PTRACE_DETACH: | ||
123 | /* detach a process that was attached. */ | ||
124 | ret = ptrace_detach(child, data); | ||
125 | break; | ||
126 | |||
127 | #ifdef PTRACE_GETREGS | 122 | #ifdef PTRACE_GETREGS |
128 | case PTRACE_GETREGS: { /* Get all gp regs from the child. */ | 123 | case PTRACE_GETREGS: { /* Get all gp regs from the child. */ |
129 | if (!access_ok(VERIFY_WRITE, p, MAX_REG_OFFSET)) { | 124 | if (!access_ok(VERIFY_WRITE, p, MAX_REG_OFFSET)) { |