diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-09-30 23:30:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-01 02:20:13 -0400 |
commit | 7b9cee16ffb495558c1e3ada55cba906e520006e (patch) | |
tree | 5aecad10c4b30caca2fe1f681876379ccadcc5a7 /arch/x86/ia32 | |
parent | bff0aa4b8f8a1c8492e99c522d044bb98a6ec098 (diff) |
x86: ia32_signal.c remove unnecessary function calls
the below 2 functions are called in save_i387_xstate_ia32()
- clear_used_math();
- stts();
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32_signal.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c index 690a480c68c5..4bc02b23674b 100644 --- a/arch/x86/ia32/ia32_signal.c +++ b/arch/x86/ia32/ia32_signal.c | |||
@@ -370,12 +370,9 @@ static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc, | |||
370 | tmp = save_i387_xstate_ia32(fpstate); | 370 | tmp = save_i387_xstate_ia32(fpstate); |
371 | if (tmp < 0) | 371 | if (tmp < 0) |
372 | err = -EFAULT; | 372 | err = -EFAULT; |
373 | else { | 373 | else |
374 | clear_used_math(); | ||
375 | stts(); | ||
376 | err |= __put_user(ptr_to_compat(tmp ? fpstate : NULL), | 374 | err |= __put_user(ptr_to_compat(tmp ? fpstate : NULL), |
377 | &sc->fpstate); | 375 | &sc->fpstate); |
378 | } | ||
379 | 376 | ||
380 | /* non-iBCS2 extensions.. */ | 377 | /* non-iBCS2 extensions.. */ |
381 | err |= __put_user(mask, &sc->oldmask); | 378 | err |= __put_user(mask, &sc->oldmask); |