Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c07c6053 authored by David S. Miller's avatar David S. Miller
Browse files

sparc32: Don't twiddle PT_DTRACE in exec.



That bit isn't used on this platform.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6cd5a86b
Loading
Loading
Loading
Loading
+0 −5
Original line number Original line Diff line number Diff line
@@ -638,11 +638,6 @@ asmlinkage int sparc_execve(struct pt_regs *regs)
			  (char __user * __user *)regs->u_regs[base + UREG_I2],
			  (char __user * __user *)regs->u_regs[base + UREG_I2],
			  regs);
			  regs);
	putname(filename);
	putname(filename);
	if (error == 0) {
		task_lock(current);
		current->ptrace &= ~PT_DTRACE;
		task_unlock(current);
	}
out:
out:
	return error;
	return error;
}
}