diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-09-05 03:32:36 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-09-08 04:03:57 -0400 |
commit | 86e9fc3a0ecdd3c21a938e325daf462ca1724f68 (patch) | |
tree | 5e1fa9f0751fdc802c13456009f0b56788998255 /arch/x86/ia32 | |
parent | 7bb0dc2222779b4cbf1ec9ad651e500e62fa5b11 (diff) |
x86/headers: Convert uses of _fpstate_ia32 to _fpstate_32
Remove uses of _fpstate_ia32 from the kernel, and move the
legacy _fpstate_ia32 definition to the user-space only portion
of the header.
Acked-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Link: http://lkml.kernel.org/r/1441438363-9999-9-git-send-email-mingo@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32_signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c index a0a19b7ba22d..b22015e847dd 100644 --- a/arch/x86/ia32/ia32_signal.c +++ b/arch/x86/ia32/ia32_signal.c | |||
@@ -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; |