diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-08-03 14:36:37 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-09-27 08:37:30 -0400 |
commit | 048c6140c0f5d0bb1af8308c91dfa560ac65a296 (patch) | |
tree | 8b49aaa9cb05e7f6a5bbab924a09398db195f4f5 /arch/mips/kernel/irixsig.c | |
parent | b4b30a5a0a270e6b3fef88373ad35d235a047fc1 (diff) |
[MIPS] Don't call try_to_freeze in do_signal & co.
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 676e868d26fb..e6f40609ba6a 100644 --- a/arch/mips/kernel/irixsig.c +++ b/arch/mips/kernel/irixsig.c | |||
@@ -186,9 +186,6 @@ asmlinkage int do_irix_signal(sigset_t *oldset, struct pt_regs *regs) | |||
186 | if (!user_mode(regs)) | 186 | if (!user_mode(regs)) |
187 | return 1; | 187 | return 1; |
188 | 188 | ||
189 | if (try_to_freeze()) | ||
190 | goto no_signal; | ||
191 | |||
192 | if (!oldset) | 189 | if (!oldset) |
193 | oldset = ¤t->blocked; | 190 | oldset = ¤t->blocked; |
194 | 191 | ||
@@ -196,7 +193,6 @@ asmlinkage int do_irix_signal(sigset_t *oldset, struct pt_regs *regs) | |||
196 | if (signr > 0) | 193 | if (signr > 0) |
197 | return handle_signal(signr, &info, &ka, oldset, regs); | 194 | return handle_signal(signr, &info, &ka, oldset, regs); |
198 | 195 | ||
199 | no_signal: | ||
200 | /* | 196 | /* |
201 | * Who's code doesn't conform to the restartable syscall convention | 197 | * Who's code doesn't conform to the restartable syscall convention |
202 | * dies here!!! The li instruction, a single machine instruction, | 198 | * dies here!!! The li instruction, a single machine instruction, |