aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-02-07 01:08:18 -0500
committerDavid S. Miller <davem@davemloft.net>2008-02-07 05:59:22 -0500
commit190aa9f60f9575d1b7382cd1ee33e2589208c514 (patch)
tree2707306174f13b26751f6264a4fceee00ef26ed1 /arch/sparc
parent38282764e3e76aa02c071af4673e6b6320e426ad (diff)
[SPARC]: Remove PTRACE_SUN* handling.
Supporting SunOS ptrace() is pretty pointless and these kinds of quirks keep us from being able to share more code with other platforms. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r--arch/sparc/kernel/ptrace.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/sparc/kernel/ptrace.c b/arch/sparc/kernel/ptrace.c
index 0619958ecfdc..29fa6e5cb450 100644
--- a/arch/sparc/kernel/ptrace.c
+++ b/arch/sparc/kernel/ptrace.c
@@ -556,8 +556,7 @@ asmlinkage void do_ptrace(struct pt_regs *regs)
556 goto out; 556 goto out;
557 } 557 }
558 558
559 if ((current->personality == PER_SUNOS && request == PTRACE_SUNATTACH) 559 if (request == PTRACE_ATTACH) {
560 || (current->personality != PER_SUNOS && request == PTRACE_ATTACH)) {
561 if (ptrace_attach(child)) { 560 if (ptrace_attach(child)) {
562 pt_error_return(regs, EPERM); 561 pt_error_return(regs, EPERM);
563 goto out_tsk; 562 goto out_tsk;
@@ -789,18 +788,6 @@ asmlinkage void do_ptrace(struct pt_regs *regs)
789 goto out_tsk; 788 goto out_tsk;
790 } 789 }
791 790
792 case PTRACE_SUNDETACH: { /* detach a process that was attached. */
793 int err = ptrace_detach(child, data);
794 if (err) {
795 pt_error_return(regs, EIO);
796 goto out_tsk;
797 }
798 pt_succ_return(regs, 0);
799 goto out_tsk;
800 }
801
802 /* PTRACE_DUMPCORE unsupported... */
803
804 default: { 791 default: {
805 int err = ptrace_request(child, request, addr, data); 792 int err = ptrace_request(child, request, addr, data);
806 if (err) 793 if (err)