aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/ia32/ia32_signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/ia32/ia32_signal.c')
-rw-r--r--arch/x86/ia32/ia32_signal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c
index e6a5c275cd3f..0552884da18d 100644
--- a/arch/x86/ia32/ia32_signal.c
+++ b/arch/x86/ia32/ia32_signal.c
@@ -26,7 +26,7 @@
26#include <asm/ptrace.h> 26#include <asm/ptrace.h>
27#include <asm/ia32_unistd.h> 27#include <asm/ia32_unistd.h>
28#include <asm/user32.h> 28#include <asm/user32.h>
29#include <asm/sigcontext32.h> 29#include <uapi/asm/sigcontext.h>
30#include <asm/proto.h> 30#include <asm/proto.h>
31#include <asm/vdso.h> 31#include <asm/vdso.h>
32#include <asm/sigframe.h> 32#include <asm/sigframe.h>
@@ -68,7 +68,7 @@
68} 68}
69 69
70static int ia32_restore_sigcontext(struct pt_regs *regs, 70static int ia32_restore_sigcontext(struct pt_regs *regs,
71 struct sigcontext_ia32 __user *sc) 71 struct sigcontext_32 __user *sc)
72{ 72{
73 unsigned int tmpflags, err = 0; 73 unsigned int tmpflags, err = 0;
74 void __user *buf; 74 void __user *buf;
@@ -170,7 +170,7 @@ badframe:
170 * Set up a signal frame. 170 * Set up a signal frame.
171 */ 171 */
172 172
173static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc, 173static int ia32_setup_sigcontext(struct sigcontext_32 __user *sc,
174 void __user *fpstate, 174 void __user *fpstate,
175 struct pt_regs *regs, unsigned int mask) 175 struct pt_regs *regs, unsigned int mask)
176{ 176{
@@ -234,7 +234,7 @@ static void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
234 unsigned long fx_aligned, math_size; 234 unsigned long fx_aligned, math_size;
235 235
236 sp = fpu__alloc_mathframe(sp, 1, &fx_aligned, &math_size); 236 sp = fpu__alloc_mathframe(sp, 1, &fx_aligned, &math_size);
237 *fpstate = (struct _fpstate_ia32 __user *) sp; 237 *fpstate = (struct _fpstate_32 __user *) sp;
238 if (copy_fpstate_to_sigframe(*fpstate, (void __user *)fx_aligned, 238 if (copy_fpstate_to_sigframe(*fpstate, (void __user *)fx_aligned,
239 math_size) < 0) 239 math_size) < 0)
240 return (void __user *) -1L; 240 return (void __user *) -1L;