diff options
author | Vegard Nossum <vegard.nossum@gmail.com> | 2008-05-28 09:46:19 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-02 12:48:23 +0200 |
commit | 6330a30a76c1e62d4b4ec238368957f8febf9113 (patch) | |
tree | 4d7d5ec2cee6ad27c914ced59a624a1bc2f5601d /include/asm-x86/ptrace.h | |
parent | 83bea8e1fa0c47b30664b6f92397c016c22f77fb (diff) | |
download | linux-3.10-6330a30a76c1e62d4b4ec238368957f8febf9113.tar.gz linux-3.10-6330a30a76c1e62d4b4ec238368957f8febf9113.tar.bz2 linux-3.10-6330a30a76c1e62d4b4ec238368957f8febf9113.zip |
x86: break mutual header inclusion
This breaks up the mutual inclusion between headers ptrace.h and vm86.h
by moving some small part of vm86.h which is needed by ptrace.h into
processor-flags.h.
We also try to move #include lines to the top.
This has been compile tested on x86_32 and x86_64 defconfig, and run
through 'make headers_check'.
Cc: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/ptrace.h')
-rw-r--r-- | include/asm-x86/ptrace.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index 9f922b0b95d..8a71db803da 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h @@ -3,7 +3,12 @@ #include <linux/compiler.h> /* For __user */ #include <asm/ptrace-abi.h> +#include <asm/processor-flags.h> +#ifdef __KERNEL__ +#include <asm/ds.h> /* the DS BTS struct is used for ptrace too */ +#include <asm/segment.h> +#endif #ifndef __ASSEMBLY__ @@ -55,9 +60,6 @@ struct pt_regs { unsigned long ss; }; -#include <asm/vm86.h> -#include <asm/segment.h> - #endif /* __KERNEL__ */ #else /* __i386__ */ |