diff options
Diffstat (limited to 'arch/x86/ia32/ia32_signal.c')
-rw-r--r-- | arch/x86/ia32/ia32_signal.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c index 0e24e3fda3d7..0a34c24f19e5 100644 --- a/arch/x86/ia32/ia32_signal.c +++ b/arch/x86/ia32/ia32_signal.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <asm/ia32_unistd.h> | 29 | #include <asm/ia32_unistd.h> |
30 | #include <asm/user32.h> | 30 | #include <asm/user32.h> |
31 | #include <asm/sigcontext32.h> | 31 | #include <asm/sigcontext32.h> |
32 | #include <asm/fpu32.h> | ||
33 | #include <asm/proto.h> | 32 | #include <asm/proto.h> |
34 | #include <asm/vdso.h> | 33 | #include <asm/vdso.h> |
35 | 34 | ||
@@ -258,7 +257,7 @@ static int ia32_restore_sigcontext(struct pt_regs *regs, | |||
258 | if (buf) { | 257 | if (buf) { |
259 | if (!access_ok(VERIFY_READ, buf, sizeof(*buf))) | 258 | if (!access_ok(VERIFY_READ, buf, sizeof(*buf))) |
260 | goto badframe; | 259 | goto badframe; |
261 | err |= restore_i387_ia32(current, buf, 0); | 260 | err |= restore_i387_ia32(buf); |
262 | } else { | 261 | } else { |
263 | struct task_struct *me = current; | 262 | struct task_struct *me = current; |
264 | 263 | ||
@@ -377,7 +376,7 @@ static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc, | |||
377 | err |= __put_user((u32)regs->flags, &sc->flags); | 376 | err |= __put_user((u32)regs->flags, &sc->flags); |
378 | err |= __put_user((u32)regs->sp, &sc->sp_at_signal); | 377 | err |= __put_user((u32)regs->sp, &sc->sp_at_signal); |
379 | 378 | ||
380 | tmp = save_i387_ia32(current, fpstate, regs, 0); | 379 | tmp = save_i387_ia32(fpstate); |
381 | if (tmp < 0) | 380 | if (tmp < 0) |
382 | err = -EFAULT; | 381 | err = -EFAULT; |
383 | else { | 382 | else { |