diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2005-11-30 17:21:06 +0000 | 
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2005-12-01 11:05:18 +0000 | 
| commit | 85b05496024fd913da2c1fbea711ebcdfd40c2f3 (patch) | |
| tree | 94910c9702bb37a92418ec8b1ae89a82f27d7a85 /arch/mips/kernel/irixsig.c | |
| parent | 04a7052c8399edc95b5e120c980823ccaade6aaf (diff) | |
| download | linux-85b05496024fd913da2c1fbea711ebcdfd40c2f3.tar.bz2 | |
[MIPS] Avoid duplicate do_syscall_trace calls on return from sigreturn.
    
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/irixsig.c')
| -rw-r--r-- | arch/mips/kernel/irixsig.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/arch/mips/kernel/irixsig.c b/arch/mips/kernel/irixsig.c index dd118c60bcd0..08273a2a501d 100644 --- a/arch/mips/kernel/irixsig.c +++ b/arch/mips/kernel/irixsig.c @@ -279,8 +279,6 @@ irix_sigreturn(struct pt_regs *regs)  	/*  	 * Don't let your children do this ...  	 */ -	if (current_thread_info()->flags & TIF_SYSCALL_TRACE) -		do_syscall_trace(regs, 1);  	__asm__ __volatile__(  		"move\t$29,%0\n\t"  		"j\tsyscall_exit" @@ -783,8 +781,6 @@ asmlinkage void irix_setcontext(struct pt_regs *regs)  	/*  	 * Don't let your children do this ...  	 */ -	if (current_thread_info()->flags & TIF_SYSCALL_TRACE) -		do_syscall_trace(regs, 1);  	__asm__ __volatile__(  		"move\t$29,%0\n\t"  		"j\tsyscall_exit" |