diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-11-30 12:21:06 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-12-01 06:05:18 -0500 |
commit | 85b05496024fd913da2c1fbea711ebcdfd40c2f3 (patch) | |
tree | 94910c9702bb37a92418ec8b1ae89a82f27d7a85 /arch/mips | |
parent | 04a7052c8399edc95b5e120c980823ccaade6aaf (diff) |
[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')
-rw-r--r-- | arch/mips/kernel/irixsig.c | 4 | ||||
-rw-r--r-- | arch/mips/kernel/signal.c | 2 | ||||
-rw-r--r-- | arch/mips/kernel/signal32.c | 2 |
3 files changed, 0 insertions, 8 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) | |||
279 | /* | 279 | /* |
280 | * Don't let your children do this ... | 280 | * Don't let your children do this ... |
281 | */ | 281 | */ |
282 | if (current_thread_info()->flags & TIF_SYSCALL_TRACE) | ||
283 | do_syscall_trace(regs, 1); | ||
284 | __asm__ __volatile__( | 282 | __asm__ __volatile__( |
285 | "move\t$29,%0\n\t" | 283 | "move\t$29,%0\n\t" |
286 | "j\tsyscall_exit" | 284 | "j\tsyscall_exit" |
@@ -783,8 +781,6 @@ asmlinkage void irix_setcontext(struct pt_regs *regs) | |||
783 | /* | 781 | /* |
784 | * Don't let your children do this ... | 782 | * Don't let your children do this ... |
785 | */ | 783 | */ |
786 | if (current_thread_info()->flags & TIF_SYSCALL_TRACE) | ||
787 | do_syscall_trace(regs, 1); | ||
788 | __asm__ __volatile__( | 784 | __asm__ __volatile__( |
789 | "move\t$29,%0\n\t" | 785 | "move\t$29,%0\n\t" |
790 | "j\tsyscall_exit" | 786 | "j\tsyscall_exit" |
diff --git a/arch/mips/kernel/signal.c b/arch/mips/kernel/signal.c index 05e09eedabff..7d1800fe7038 100644 --- a/arch/mips/kernel/signal.c +++ b/arch/mips/kernel/signal.c | |||
@@ -220,8 +220,6 @@ _sys_sigreturn(nabi_no_regargs struct pt_regs regs) | |||
220 | /* | 220 | /* |
221 | * Don't let your children do this ... | 221 | * Don't let your children do this ... |
222 | */ | 222 | */ |
223 | if (current_thread_info()->flags & TIF_SYSCALL_TRACE) | ||
224 | do_syscall_trace(®s, 1); | ||
225 | __asm__ __volatile__( | 223 | __asm__ __volatile__( |
226 | "move\t$29, %0\n\t" | 224 | "move\t$29, %0\n\t" |
227 | "j\tsyscall_exit" | 225 | "j\tsyscall_exit" |
diff --git a/arch/mips/kernel/signal32.c b/arch/mips/kernel/signal32.c index e315d3f6aa6e..c856dbc52abb 100644 --- a/arch/mips/kernel/signal32.c +++ b/arch/mips/kernel/signal32.c | |||
@@ -497,8 +497,6 @@ _sys32_sigreturn(nabi_no_regargs struct pt_regs regs) | |||
497 | /* | 497 | /* |
498 | * Don't let your children do this ... | 498 | * Don't let your children do this ... |
499 | */ | 499 | */ |
500 | if (current_thread_info()->flags & TIF_SYSCALL_TRACE) | ||
501 | do_syscall_trace(®s, 1); | ||
502 | __asm__ __volatile__( | 500 | __asm__ __volatile__( |
503 | "move\t$29, %0\n\t" | 501 | "move\t$29, %0\n\t" |
504 | "j\tsyscall_exit" | 502 | "j\tsyscall_exit" |