make generic sys_ptrace unconditional
With s390 the last arch switched to the generic sys_ptrace yesterday so we can now kill the ifdef around it to enforce every new port it using it instead of introducing new weirdo versions. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
9fc3ace937
commit
bcf35afb52
@ -534,7 +534,6 @@ struct task_struct *ptrace_get_task_struct(pid_t pid)
|
|||||||
#define arch_ptrace_attach(child) do { } while (0)
|
#define arch_ptrace_attach(child) do { } while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __ARCH_SYS_PTRACE
|
|
||||||
asmlinkage long sys_ptrace(long request, long pid, long addr, long data)
|
asmlinkage long sys_ptrace(long request, long pid, long addr, long data)
|
||||||
{
|
{
|
||||||
struct task_struct *child;
|
struct task_struct *child;
|
||||||
@ -582,7 +581,6 @@ asmlinkage long sys_ptrace(long request, long pid, long addr, long data)
|
|||||||
unlock_kernel();
|
unlock_kernel();
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* __ARCH_SYS_PTRACE */
|
|
||||||
|
|
||||||
int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data)
|
int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user