Skip to content

Commit 711531f

Browse files
committed
x86/headers: Remove direct sigcontext32.h uses
Now that all sigcontext types are defined in asm/sigcontext.h, remove the various sigcontext32.h uses in the kernel. We still keep the header itself, which includes sigcontext.h, in case user-space relies on it. 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-15-git-send-email-mingo@kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent 8fcb346 commit 711531f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

arch/x86/ia32/ia32_signal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <asm/ptrace.h>
2727
#include <asm/ia32_unistd.h>
2828
#include <asm/user32.h>
29-
#include <asm/sigcontext32.h>
29+
#include <asm/sigcontext.h>
3030
#include <asm/proto.h>
3131
#include <asm/vdso.h>
3232
#include <asm/sigframe.h>

arch/x86/include/asm/fpu/signal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define _ASM_X86_FPU_SIGNAL_H
66

77
#ifdef CONFIG_X86_64
8-
# include <asm/sigcontext32.h>
8+
# include <asm/sigcontext.h>
99
# include <asm/user32.h>
1010
struct ksignal;
1111
int ia32_setup_rt_frame(int sig, struct ksignal *ksig,

arch/x86/include/asm/ia32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* 32 bit structures for IA32 support.
1111
*/
1212

13-
#include <asm/sigcontext32.h>
13+
#include <asm/sigcontext.h>
1414

1515
/* signal.h */
1616

arch/x86/include/uapi/asm/sigcontext32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _ASM_X86_SIGCONTEXT32_H
22
#define _ASM_X86_SIGCONTEXT32_H
33

4-
/* Signal context definitions for compat 32-bit programs: */
4+
/* This is a legacy file - all the type definitions are in sigcontext.h: */
55

66
#include <asm/sigcontext.h>
77

0 commit comments

Comments
 (0)