diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-20 15:03:57 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-20 15:03:57 -0500 |
| commit | 2a0fede97fd52a5c9789d1d54ebd3b46878151c3 (patch) | |
| tree | a0a1f5bdc25491414df20ff90785ca14e3929cc3 /arch/x86 | |
| parent | 06bc0f4a2e7fe54d98539686f070ceccfd73953d (diff) | |
| parent | d139336700a5f3a560da235e4dfcd286773025d4 (diff) | |
Merge branch 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 cleanups from Ingo Molnar:
"Misc cleanups"
* 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86, cpu, amd: Fix a shadowed variable situation
um, x86: Fix vDSO build
x86: Delete non-required instances of include <linux/init.h>
x86, realmode: Pointer walk cleanups, pull out invariant use of __pa()
x86/traps: Clean up error exception handler definitions
Diffstat (limited to 'arch/x86')
42 files changed, 24 insertions, 74 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index c696a8687567..6e4ce2df87cf 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h | |||
| @@ -118,7 +118,6 @@ extern void mce_register_decode_chain(struct notifier_block *nb); | |||
| 118 | extern void mce_unregister_decode_chain(struct notifier_block *nb); | 118 | extern void mce_unregister_decode_chain(struct notifier_block *nb); |
| 119 | 119 | ||
| 120 | #include <linux/percpu.h> | 120 | #include <linux/percpu.h> |
| 121 | #include <linux/init.h> | ||
| 122 | #include <linux/atomic.h> | 121 | #include <linux/atomic.h> |
| 123 | 122 | ||
| 124 | extern int mce_p5_enabled; | 123 | extern int mce_p5_enabled; |
diff --git a/arch/x86/include/asm/mpspec.h b/arch/x86/include/asm/mpspec.h index 3142a94c7b4b..3e6b4920ef5d 100644 --- a/arch/x86/include/asm/mpspec.h +++ b/arch/x86/include/asm/mpspec.h | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | #ifndef _ASM_X86_MPSPEC_H | 1 | #ifndef _ASM_X86_MPSPEC_H |
| 2 | #define _ASM_X86_MPSPEC_H | 2 | #define _ASM_X86_MPSPEC_H |
| 3 | 3 | ||
| 4 | #include <linux/init.h> | ||
| 5 | 4 | ||
| 6 | #include <asm/mpspec_def.h> | 5 | #include <asm/mpspec_def.h> |
| 7 | #include <asm/x86_init.h> | 6 | #include <asm/x86_init.h> |
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 24821f5768bc..613899651b02 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
| @@ -27,7 +27,6 @@ struct mm_struct; | |||
| 27 | #include <linux/cache.h> | 27 | #include <linux/cache.h> |
| 28 | #include <linux/threads.h> | 28 | #include <linux/threads.h> |
| 29 | #include <linux/math64.h> | 29 | #include <linux/math64.h> |
| 30 | #include <linux/init.h> | ||
| 31 | #include <linux/err.h> | 30 | #include <linux/err.h> |
| 32 | #include <linux/irqflags.h> | 31 | #include <linux/irqflags.h> |
| 33 | 32 | ||
diff --git a/arch/x86/include/asm/ptrace.h b/arch/x86/include/asm/ptrace.h index 942a08623a1a..14fd6fd75a19 100644 --- a/arch/x86/include/asm/ptrace.h +++ b/arch/x86/include/asm/ptrace.h | |||
| @@ -60,7 +60,6 @@ struct pt_regs { | |||
| 60 | 60 | ||
| 61 | #endif /* !__i386__ */ | 61 | #endif /* !__i386__ */ |
| 62 | 62 | ||
| 63 | #include <linux/init.h> | ||
| 64 | #ifdef CONFIG_PARAVIRT | 63 | #ifdef CONFIG_PARAVIRT |
| 65 | #include <asm/paravirt_types.h> | 64 | #include <asm/paravirt_types.h> |
| 66 | #endif | 65 | #endif |
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 4137890e88e3..8cd27e08e23c 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | #define _ASM_X86_SMP_H | 2 | #define _ASM_X86_SMP_H |
| 3 | #ifndef __ASSEMBLY__ | 3 | #ifndef __ASSEMBLY__ |
| 4 | #include <linux/cpumask.h> | 4 | #include <linux/cpumask.h> |
| 5 | #include <linux/init.h> | ||
| 6 | #include <asm/percpu.h> | 5 | #include <asm/percpu.h> |
| 7 | 6 | ||
| 8 | /* | 7 | /* |
diff --git a/arch/x86/include/asm/timer.h b/arch/x86/include/asm/timer.h index 3de54ef0aea5..a04eabd43d06 100644 --- a/arch/x86/include/asm/timer.h +++ b/arch/x86/include/asm/timer.h | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #ifndef _ASM_X86_TIMER_H | 1 | #ifndef _ASM_X86_TIMER_H |
| 2 | #define _ASM_X86_TIMER_H | 2 | #define _ASM_X86_TIMER_H |
| 3 | #include <linux/init.h> | ||
| 4 | #include <linux/pm.h> | 3 | #include <linux/pm.h> |
| 5 | #include <linux/percpu.h> | 4 | #include <linux/percpu.h> |
| 6 | #include <linux/interrupt.h> | 5 | #include <linux/interrupt.h> |
diff --git a/arch/x86/kernel/apic/apic_flat_64.c b/arch/x86/kernel/apic/apic_flat_64.c index 00c77cf78e9e..5d5b9eb2b7a4 100644 --- a/arch/x86/kernel/apic/apic_flat_64.c +++ b/arch/x86/kernel/apic/apic_flat_64.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/string.h> | 14 | #include <linux/string.h> |
| 15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/ctype.h> | 16 | #include <linux/ctype.h> |
| 17 | #include <linux/init.h> | ||
| 18 | #include <linux/hardirq.h> | 17 | #include <linux/hardirq.h> |
| 19 | #include <linux/module.h> | 18 | #include <linux/module.h> |
| 20 | #include <asm/smp.h> | 19 | #include <asm/smp.h> |
diff --git a/arch/x86/kernel/apic/apic_noop.c b/arch/x86/kernel/apic/apic_noop.c index e145f28b4099..191ce75c0e54 100644 --- a/arch/x86/kernel/apic/apic_noop.c +++ b/arch/x86/kernel/apic/apic_noop.c | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | #include <linux/string.h> | 15 | #include <linux/string.h> |
| 16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/ctype.h> | 17 | #include <linux/ctype.h> |
| 18 | #include <linux/init.h> | ||
| 19 | #include <linux/errno.h> | 18 | #include <linux/errno.h> |
| 20 | #include <asm/fixmap.h> | 19 | #include <asm/fixmap.h> |
| 21 | #include <asm/mpspec.h> | 20 | #include <asm/mpspec.h> |
diff --git a/arch/x86/kernel/apic/ipi.c b/arch/x86/kernel/apic/ipi.c index 7434d8556d09..62071569bd50 100644 --- a/arch/x86/kernel/apic/ipi.c +++ b/arch/x86/kernel/apic/ipi.c | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <linux/cpumask.h> | 1 | #include <linux/cpumask.h> |
| 2 | #include <linux/interrupt.h> | 2 | #include <linux/interrupt.h> |
| 3 | #include <linux/init.h> | ||
| 4 | 3 | ||
| 5 | #include <linux/mm.h> | 4 | #include <linux/mm.h> |
| 6 | #include <linux/delay.h> | 5 | #include <linux/delay.h> |
diff --git a/arch/x86/kernel/apic/summit_32.c b/arch/x86/kernel/apic/summit_32.c index 77c95c0e1bf7..00146f9b0254 100644 --- a/arch/x86/kernel/apic/summit_32.c +++ b/arch/x86/kernel/apic/summit_32.c | |||
| @@ -29,7 +29,6 @@ | |||
| 29 | #define pr_fmt(fmt) "summit: %s: " fmt, __func__ | 29 | #define pr_fmt(fmt) "summit: %s: " fmt, __func__ |
| 30 | 30 | ||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/init.h> | ||
| 33 | #include <asm/io.h> | 32 | #include <asm/io.h> |
| 34 | #include <asm/bios_ebda.h> | 33 | #include <asm/bios_ebda.h> |
| 35 | 34 | ||
diff --git a/arch/x86/kernel/apic/x2apic_cluster.c b/arch/x86/kernel/apic/x2apic_cluster.c index 140e29db478d..cac85ee6913f 100644 --- a/arch/x86/kernel/apic/x2apic_cluster.c +++ b/arch/x86/kernel/apic/x2apic_cluster.c | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | #include <linux/string.h> | 3 | #include <linux/string.h> |
| 4 | #include <linux/kernel.h> | 4 | #include <linux/kernel.h> |
| 5 | #include <linux/ctype.h> | 5 | #include <linux/ctype.h> |
| 6 | #include <linux/init.h> | ||
| 7 | #include <linux/dmar.h> | 6 | #include <linux/dmar.h> |
| 8 | #include <linux/cpu.h> | 7 | #include <linux/cpu.h> |
| 9 | 8 | ||
diff --git a/arch/x86/kernel/apic/x2apic_phys.c b/arch/x86/kernel/apic/x2apic_phys.c index 562a76d433c8..de231e328cae 100644 --- a/arch/x86/kernel/apic/x2apic_phys.c +++ b/arch/x86/kernel/apic/x2apic_phys.c | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | #include <linux/string.h> | 3 | #include <linux/string.h> |
| 4 | #include <linux/kernel.h> | 4 | #include <linux/kernel.h> |
| 5 | #include <linux/ctype.h> | 5 | #include <linux/ctype.h> |
| 6 | #include <linux/init.h> | ||
| 7 | #include <linux/dmar.h> | 6 | #include <linux/dmar.h> |
| 8 | 7 | ||
| 9 | #include <asm/smp.h> | 8 | #include <asm/smp.h> |
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 8bc79cddd9a2..525712c7ffa2 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | #include <linux/export.h> | 1 | #include <linux/export.h> |
| 2 | #include <linux/init.h> | ||
| 3 | #include <linux/bitops.h> | 2 | #include <linux/bitops.h> |
| 4 | #include <linux/elf.h> | 3 | #include <linux/elf.h> |
| 5 | #include <linux/mm.h> | 4 | #include <linux/mm.h> |
| @@ -790,14 +789,10 @@ static void cpu_detect_tlb_amd(struct cpuinfo_x86 *c) | |||
| 790 | } | 789 | } |
| 791 | 790 | ||
| 792 | /* Handle DTLB 2M and 4M sizes, fall back to L1 if L2 is disabled */ | 791 | /* Handle DTLB 2M and 4M sizes, fall back to L1 if L2 is disabled */ |
| 793 | if (!((eax >> 16) & mask)) { | 792 | if (!((eax >> 16) & mask)) |
| 794 | u32 a, b, c, d; | 793 | tlb_lld_2m[ENTRIES] = (cpuid_eax(0x80000005) >> 16) & 0xff; |
| 795 | 794 | else | |
| 796 | cpuid(0x80000005, &a, &b, &c, &d); | ||
| 797 | tlb_lld_2m[ENTRIES] = (a >> 16) & 0xff; | ||
| 798 | } else { | ||
| 799 | tlb_lld_2m[ENTRIES] = (eax >> 16) & mask; | 795 | tlb_lld_2m[ENTRIES] = (eax >> 16) & mask; |
| 800 | } | ||
| 801 | 796 | ||
| 802 | /* a 4M entry uses two 2M entries */ | 797 | /* a 4M entry uses two 2M entries */ |
| 803 | tlb_lld_4m[ENTRIES] = tlb_lld_2m[ENTRIES] >> 1; | 798 | tlb_lld_4m[ENTRIES] = tlb_lld_2m[ENTRIES] >> 1; |
diff --git a/arch/x86/kernel/cpu/centaur.c b/arch/x86/kernel/cpu/centaur.c index 8d5652dc99dd..8779edab684e 100644 --- a/arch/x86/kernel/cpu/centaur.c +++ b/arch/x86/kernel/cpu/centaur.c | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <linux/bitops.h> | 1 | #include <linux/bitops.h> |
| 2 | #include <linux/kernel.h> | 2 | #include <linux/kernel.h> |
| 3 | #include <linux/init.h> | ||
| 4 | 3 | ||
| 5 | #include <asm/processor.h> | 4 | #include <asm/processor.h> |
| 6 | #include <asm/e820.h> | 5 | #include <asm/e820.h> |
diff --git a/arch/x86/kernel/cpu/cyrix.c b/arch/x86/kernel/cpu/cyrix.c index d0969c75ab54..aaf152e79637 100644 --- a/arch/x86/kernel/cpu/cyrix.c +++ b/arch/x86/kernel/cpu/cyrix.c | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | #include <linux/init.h> | ||
| 2 | #include <linux/bitops.h> | 1 | #include <linux/bitops.h> |
| 3 | #include <linux/delay.h> | 2 | #include <linux/delay.h> |
| 4 | #include <linux/pci.h> | 3 | #include <linux/pci.h> |
diff --git a/arch/x86/kernel/cpu/intel.c b/arch/x86/kernel/cpu/intel.c index 1a439c047ff3..3004eca83b92 100644 --- a/arch/x86/kernel/cpu/intel.c +++ b/arch/x86/kernel/cpu/intel.c | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | #include <linux/init.h> | ||
| 2 | #include <linux/kernel.h> | 1 | #include <linux/kernel.h> |
| 3 | 2 | ||
| 4 | #include <linux/string.h> | 3 | #include <linux/string.h> |
diff --git a/arch/x86/kernel/cpu/mcheck/mce_intel.c b/arch/x86/kernel/cpu/mcheck/mce_intel.c index 4cfe0458ca66..fb6156fee6f7 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_intel.c +++ b/arch/x86/kernel/cpu/mcheck/mce_intel.c | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | */ | 6 | */ |
| 7 | 7 | ||
| 8 | #include <linux/gfp.h> | 8 | #include <linux/gfp.h> |
| 9 | #include <linux/init.h> | ||
| 10 | #include <linux/interrupt.h> | 9 | #include <linux/interrupt.h> |
| 11 | #include <linux/percpu.h> | 10 | #include <linux/percpu.h> |
| 12 | #include <linux/sched.h> | 11 | #include <linux/sched.h> |
diff --git a/arch/x86/kernel/cpu/mcheck/p5.c b/arch/x86/kernel/cpu/mcheck/p5.c index 1c044b1ccc59..a3042989398c 100644 --- a/arch/x86/kernel/cpu/mcheck/p5.c +++ b/arch/x86/kernel/cpu/mcheck/p5.c | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #include <linux/interrupt.h> | 5 | #include <linux/interrupt.h> |
| 6 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
| 7 | #include <linux/types.h> | 7 | #include <linux/types.h> |
| 8 | #include <linux/init.h> | ||
| 9 | #include <linux/smp.h> | 8 | #include <linux/smp.h> |
| 10 | 9 | ||
| 11 | #include <asm/processor.h> | 10 | #include <asm/processor.h> |
diff --git a/arch/x86/kernel/cpu/mcheck/winchip.c b/arch/x86/kernel/cpu/mcheck/winchip.c index e9a701aecaa1..7dc5564d0cdf 100644 --- a/arch/x86/kernel/cpu/mcheck/winchip.c +++ b/arch/x86/kernel/cpu/mcheck/winchip.c | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #include <linux/interrupt.h> | 5 | #include <linux/interrupt.h> |
| 6 | #include <linux/kernel.h> | 6 | #include <linux/kernel.h> |
| 7 | #include <linux/types.h> | 7 | #include <linux/types.h> |
| 8 | #include <linux/init.h> | ||
| 9 | 8 | ||
| 10 | #include <asm/processor.h> | 9 | #include <asm/processor.h> |
| 11 | #include <asm/mce.h> | 10 | #include <asm/mce.h> |
diff --git a/arch/x86/kernel/cpu/transmeta.c b/arch/x86/kernel/cpu/transmeta.c index aa0430d69b90..3fa0e5ad86b4 100644 --- a/arch/x86/kernel/cpu/transmeta.c +++ b/arch/x86/kernel/cpu/transmeta.c | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <linux/kernel.h> | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/mm.h> | 2 | #include <linux/mm.h> |
| 3 | #include <linux/init.h> | ||
| 4 | #include <asm/processor.h> | 3 | #include <asm/processor.h> |
| 5 | #include <asm/msr.h> | 4 | #include <asm/msr.h> |
| 6 | #include "cpu.h" | 5 | #include "cpu.h" |
diff --git a/arch/x86/kernel/cpu/umc.c b/arch/x86/kernel/cpu/umc.c index 75c5ad5d35cc..ef9c2a0078bd 100644 --- a/arch/x86/kernel/cpu/umc.c +++ b/arch/x86/kernel/cpu/umc.c | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | #include <linux/kernel.h> | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/init.h> | ||
| 3 | #include <asm/processor.h> | 2 | #include <asm/processor.h> |
| 4 | #include "cpu.h" | 3 | #include "cpu.h" |
| 5 | 4 | ||
diff --git a/arch/x86/kernel/crash.c b/arch/x86/kernel/crash.c index 18677a90d6a3..a57902efe2d5 100644 --- a/arch/x86/kernel/crash.c +++ b/arch/x86/kernel/crash.c | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | * | 7 | * |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | #include <linux/init.h> | ||
| 11 | #include <linux/types.h> | 10 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
| 13 | #include <linux/smp.h> | 12 | #include <linux/smp.h> |
diff --git a/arch/x86/kernel/doublefault.c b/arch/x86/kernel/doublefault.c index 5d3fe8d36e4a..f6dfd9334b67 100644 --- a/arch/x86/kernel/doublefault.c +++ b/arch/x86/kernel/doublefault.c | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <linux/mm.h> | 1 | #include <linux/mm.h> |
| 2 | #include <linux/sched.h> | 2 | #include <linux/sched.h> |
| 3 | #include <linux/init.h> | ||
| 4 | #include <linux/init_task.h> | 3 | #include <linux/init_task.h> |
| 5 | #include <linux/fs.h> | 4 | #include <linux/fs.h> |
| 6 | 5 | ||
diff --git a/arch/x86/kernel/hw_breakpoint.c b/arch/x86/kernel/hw_breakpoint.c index f66ff162dce8..a67b47c31314 100644 --- a/arch/x86/kernel/hw_breakpoint.c +++ b/arch/x86/kernel/hw_breakpoint.c | |||
| @@ -38,7 +38,6 @@ | |||
| 38 | #include <linux/kernel.h> | 38 | #include <linux/kernel.h> |
| 39 | #include <linux/module.h> | 39 | #include <linux/module.h> |
| 40 | #include <linux/sched.h> | 40 | #include <linux/sched.h> |
| 41 | #include <linux/init.h> | ||
| 42 | #include <linux/smp.h> | 41 | #include <linux/smp.h> |
| 43 | 42 | ||
| 44 | #include <asm/hw_breakpoint.h> | 43 | #include <asm/hw_breakpoint.h> |
diff --git a/arch/x86/kernel/kgdb.c b/arch/x86/kernel/kgdb.c index 836f8322960e..7ec1d5f8d283 100644 --- a/arch/x86/kernel/kgdb.c +++ b/arch/x86/kernel/kgdb.c | |||
| @@ -39,7 +39,6 @@ | |||
| 39 | #include <linux/sched.h> | 39 | #include <linux/sched.h> |
| 40 | #include <linux/delay.h> | 40 | #include <linux/delay.h> |
| 41 | #include <linux/kgdb.h> | 41 | #include <linux/kgdb.h> |
| 42 | #include <linux/init.h> | ||
| 43 | #include <linux/smp.h> | 42 | #include <linux/smp.h> |
| 44 | #include <linux/nmi.h> | 43 | #include <linux/nmi.h> |
| 45 | #include <linux/hw_breakpoint.h> | 44 | #include <linux/hw_breakpoint.h> |
diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c index 5b19e4d78b00..1667b1de8d5d 100644 --- a/arch/x86/kernel/machine_kexec_32.c +++ b/arch/x86/kernel/machine_kexec_32.c | |||
| @@ -9,7 +9,6 @@ | |||
| 9 | #include <linux/mm.h> | 9 | #include <linux/mm.h> |
| 10 | #include <linux/kexec.h> | 10 | #include <linux/kexec.h> |
| 11 | #include <linux/delay.h> | 11 | #include <linux/delay.h> |
| 12 | #include <linux/init.h> | ||
| 13 | #include <linux/numa.h> | 12 | #include <linux/numa.h> |
| 14 | #include <linux/ftrace.h> | 13 | #include <linux/ftrace.h> |
| 15 | #include <linux/suspend.h> | 14 | #include <linux/suspend.h> |
diff --git a/arch/x86/kernel/pci-nommu.c b/arch/x86/kernel/pci-nommu.c index 871be4a84c7d..da15918d1c81 100644 --- a/arch/x86/kernel/pci-nommu.c +++ b/arch/x86/kernel/pci-nommu.c | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | #include <linux/dma-mapping.h> | 3 | #include <linux/dma-mapping.h> |
| 4 | #include <linux/scatterlist.h> | 4 | #include <linux/scatterlist.h> |
| 5 | #include <linux/string.h> | 5 | #include <linux/string.h> |
| 6 | #include <linux/init.h> | ||
| 7 | #include <linux/gfp.h> | 6 | #include <linux/gfp.h> |
| 8 | #include <linux/pci.h> | 7 | #include <linux/pci.h> |
| 9 | #include <linux/mm.h> | 8 | #include <linux/mm.h> |
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c index 6f1236c29c4b..0de43e98ce08 100644 --- a/arch/x86/kernel/process_32.c +++ b/arch/x86/kernel/process_32.c | |||
| @@ -24,7 +24,6 @@ | |||
| 24 | #include <linux/interrupt.h> | 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
| 26 | #include <linux/reboot.h> | 26 | #include <linux/reboot.h> |
| 27 | #include <linux/init.h> | ||
| 28 | #include <linux/mc146818rtc.h> | 27 | #include <linux/mc146818rtc.h> |
| 29 | #include <linux/module.h> | 28 | #include <linux/module.h> |
| 30 | #include <linux/kallsyms.h> | 29 | #include <linux/kallsyms.h> |
diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c index b857ed890b4c..57409f6b8c62 100644 --- a/arch/x86/kernel/traps.c +++ b/arch/x86/kernel/traps.c | |||
| @@ -211,21 +211,17 @@ dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \ | |||
| 211 | exception_exit(prev_state); \ | 211 | exception_exit(prev_state); \ |
| 212 | } | 212 | } |
| 213 | 213 | ||
| 214 | DO_ERROR_INFO(X86_TRAP_DE, SIGFPE, "divide error", divide_error, FPE_INTDIV, | 214 | DO_ERROR_INFO(X86_TRAP_DE, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip ) |
| 215 | regs->ip) | 215 | DO_ERROR (X86_TRAP_OF, SIGSEGV, "overflow", overflow ) |
| 216 | DO_ERROR(X86_TRAP_OF, SIGSEGV, "overflow", overflow) | 216 | DO_ERROR (X86_TRAP_BR, SIGSEGV, "bounds", bounds ) |
| 217 | DO_ERROR(X86_TRAP_BR, SIGSEGV, "bounds", bounds) | 217 | DO_ERROR_INFO(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip ) |
| 218 | DO_ERROR_INFO(X86_TRAP_UD, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, | 218 | DO_ERROR (X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun ) |
| 219 | regs->ip) | 219 | DO_ERROR (X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS ) |
| 220 | DO_ERROR(X86_TRAP_OLD_MF, SIGFPE, "coprocessor segment overrun", | 220 | DO_ERROR (X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present ) |
| 221 | coprocessor_segment_overrun) | ||
| 222 | DO_ERROR(X86_TRAP_TS, SIGSEGV, "invalid TSS", invalid_TSS) | ||
| 223 | DO_ERROR(X86_TRAP_NP, SIGBUS, "segment not present", segment_not_present) | ||
| 224 | #ifdef CONFIG_X86_32 | 221 | #ifdef CONFIG_X86_32 |
| 225 | DO_ERROR(X86_TRAP_SS, SIGBUS, "stack segment", stack_segment) | 222 | DO_ERROR (X86_TRAP_SS, SIGBUS, "stack segment", stack_segment ) |
| 226 | #endif | 223 | #endif |
| 227 | DO_ERROR_INFO(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check, | 224 | DO_ERROR_INFO(X86_TRAP_AC, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0 ) |
| 228 | BUS_ADRALN, 0) | ||
| 229 | 225 | ||
| 230 | #ifdef CONFIG_X86_64 | 226 | #ifdef CONFIG_X86_64 |
| 231 | /* Runs on IST stack */ | 227 | /* Runs on IST stack */ |
diff --git a/arch/x86/kernel/tsc_sync.c b/arch/x86/kernel/tsc_sync.c index adfdf56a3714..26488487bc61 100644 --- a/arch/x86/kernel/tsc_sync.c +++ b/arch/x86/kernel/tsc_sync.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | */ | 16 | */ |
| 17 | #include <linux/spinlock.h> | 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> | ||
| 20 | #include <linux/smp.h> | 19 | #include <linux/smp.h> |
| 21 | #include <linux/nmi.h> | 20 | #include <linux/nmi.h> |
| 22 | #include <asm/tsc.h> | 21 | #include <asm/tsc.h> |
diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c index 7c3bee636e2f..39d6a3db0b96 100644 --- a/arch/x86/lib/delay.c +++ b/arch/x86/lib/delay.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #include <linux/timex.h> | 16 | #include <linux/timex.h> |
| 17 | #include <linux/preempt.h> | 17 | #include <linux/preempt.h> |
| 18 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
| 19 | #include <linux/init.h> | ||
| 20 | 19 | ||
| 21 | #include <asm/processor.h> | 20 | #include <asm/processor.h> |
| 22 | #include <asm/delay.h> | 21 | #include <asm/delay.h> |
diff --git a/arch/x86/mm/kmmio.c b/arch/x86/mm/kmmio.c index e5d5e2ce9f77..637ab34ed632 100644 --- a/arch/x86/mm/kmmio.c +++ b/arch/x86/mm/kmmio.c | |||
| @@ -11,7 +11,6 @@ | |||
| 11 | #include <linux/rculist.h> | 11 | #include <linux/rculist.h> |
| 12 | #include <linux/spinlock.h> | 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/hash.h> | 13 | #include <linux/hash.h> |
| 14 | #include <linux/init.h> | ||
| 15 | #include <linux/module.h> | 14 | #include <linux/module.h> |
| 16 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
| 17 | #include <linux/uaccess.h> | 16 | #include <linux/uaccess.h> |
diff --git a/arch/x86/mm/pageattr-test.c b/arch/x86/mm/pageattr-test.c index d0b1773d9d2e..461bc8289024 100644 --- a/arch/x86/mm/pageattr-test.c +++ b/arch/x86/mm/pageattr-test.c | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include <linux/kthread.h> | 8 | #include <linux/kthread.h> |
| 9 | #include <linux/random.h> | 9 | #include <linux/random.h> |
| 10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 11 | #include <linux/init.h> | ||
| 12 | #include <linux/mm.h> | 11 | #include <linux/mm.h> |
| 13 | 12 | ||
| 14 | #include <asm/cacheflush.h> | 13 | #include <asm/cacheflush.h> |
diff --git a/arch/x86/pci/fixup.c b/arch/x86/pci/fixup.c index b046e070e088..bca9e85daaa5 100644 --- a/arch/x86/pci/fixup.c +++ b/arch/x86/pci/fixup.c | |||
| @@ -5,7 +5,6 @@ | |||
| 5 | #include <linux/delay.h> | 5 | #include <linux/delay.h> |
| 6 | #include <linux/dmi.h> | 6 | #include <linux/dmi.h> |
| 7 | #include <linux/pci.h> | 7 | #include <linux/pci.h> |
| 8 | #include <linux/init.h> | ||
| 9 | #include <linux/vgaarb.h> | 8 | #include <linux/vgaarb.h> |
| 10 | #include <asm/pci_x86.h> | 9 | #include <asm/pci_x86.h> |
| 11 | 10 | ||
diff --git a/arch/x86/platform/intel-mid/early_printk_intel_mid.c b/arch/x86/platform/intel-mid/early_printk_intel_mid.c index 4f702f554f6e..e0bd082a80e0 100644 --- a/arch/x86/platform/intel-mid/early_printk_intel_mid.c +++ b/arch/x86/platform/intel-mid/early_printk_intel_mid.c | |||
| @@ -22,7 +22,6 @@ | |||
| 22 | #include <linux/console.h> | 22 | #include <linux/console.h> |
| 23 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
| 25 | #include <linux/init.h> | ||
| 26 | #include <linux/io.h> | 25 | #include <linux/io.h> |
| 27 | 26 | ||
| 28 | #include <asm/fixmap.h> | 27 | #include <asm/fixmap.h> |
diff --git a/arch/x86/platform/iris/iris.c b/arch/x86/platform/iris/iris.c index e6cb80f620af..4d171e8640ef 100644 --- a/arch/x86/platform/iris/iris.c +++ b/arch/x86/platform/iris/iris.c | |||
| @@ -27,7 +27,6 @@ | |||
| 27 | #include <linux/kernel.h> | 27 | #include <linux/kernel.h> |
| 28 | #include <linux/errno.h> | 28 | #include <linux/errno.h> |
| 29 | #include <linux/delay.h> | 29 | #include <linux/delay.h> |
| 30 | #include <linux/init.h> | ||
| 31 | #include <linux/pm.h> | 30 | #include <linux/pm.h> |
| 32 | #include <asm/io.h> | 31 | #include <asm/io.h> |
| 33 | 32 | ||
diff --git a/arch/x86/realmode/init.c b/arch/x86/realmode/init.c index a44f457e70a1..bad628a620c4 100644 --- a/arch/x86/realmode/init.c +++ b/arch/x86/realmode/init.c | |||
| @@ -29,12 +29,10 @@ void __init reserve_real_mode(void) | |||
| 29 | void __init setup_real_mode(void) | 29 | void __init setup_real_mode(void) |
| 30 | { | 30 | { |
| 31 | u16 real_mode_seg; | 31 | u16 real_mode_seg; |
| 32 | u32 *rel; | 32 | const u32 *rel; |
| 33 | u32 count; | 33 | u32 count; |
| 34 | u32 *ptr; | ||
| 35 | u16 *seg; | ||
| 36 | int i; | ||
| 37 | unsigned char *base; | 34 | unsigned char *base; |
| 35 | unsigned long phys_base; | ||
| 38 | struct trampoline_header *trampoline_header; | 36 | struct trampoline_header *trampoline_header; |
| 39 | size_t size = PAGE_ALIGN(real_mode_blob_end - real_mode_blob); | 37 | size_t size = PAGE_ALIGN(real_mode_blob_end - real_mode_blob); |
| 40 | #ifdef CONFIG_X86_64 | 38 | #ifdef CONFIG_X86_64 |
| @@ -46,23 +44,23 @@ void __init setup_real_mode(void) | |||
| 46 | 44 | ||
| 47 | memcpy(base, real_mode_blob, size); | 45 | memcpy(base, real_mode_blob, size); |
| 48 | 46 | ||
| 49 | real_mode_seg = __pa(base) >> 4; | 47 | phys_base = __pa(base); |
| 48 | real_mode_seg = phys_base >> 4; | ||
| 49 | |||
| 50 | rel = (u32 *) real_mode_relocs; | 50 | rel = (u32 *) real_mode_relocs; |
| 51 | 51 | ||
| 52 | /* 16-bit segment relocations. */ | 52 | /* 16-bit segment relocations. */ |
| 53 | count = rel[0]; | 53 | count = *rel++; |
| 54 | rel = &rel[1]; | 54 | while (count--) { |
| 55 | for (i = 0; i < count; i++) { | 55 | u16 *seg = (u16 *) (base + *rel++); |
| 56 | seg = (u16 *) (base + rel[i]); | ||
| 57 | *seg = real_mode_seg; | 56 | *seg = real_mode_seg; |
| 58 | } | 57 | } |
| 59 | 58 | ||
| 60 | /* 32-bit linear relocations. */ | 59 | /* 32-bit linear relocations. */ |
| 61 | count = rel[i]; | 60 | count = *rel++; |
| 62 | rel = &rel[i + 1]; | 61 | while (count--) { |
| 63 | for (i = 0; i < count; i++) { | 62 | u32 *ptr = (u32 *) (base + *rel++); |
| 64 | ptr = (u32 *) (base + rel[i]); | 63 | *ptr += phys_base; |
| 65 | *ptr += __pa(base); | ||
| 66 | } | 64 | } |
| 67 | 65 | ||
| 68 | /* Must be perfomed *after* relocation. */ | 66 | /* Must be perfomed *after* relocation. */ |
diff --git a/arch/x86/realmode/rm/reboot.S b/arch/x86/realmode/rm/reboot.S index f932ea61d1c8..d66c607bdc58 100644 --- a/arch/x86/realmode/rm/reboot.S +++ b/arch/x86/realmode/rm/reboot.S | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | #include <linux/linkage.h> | 1 | #include <linux/linkage.h> |
| 2 | #include <linux/init.h> | ||
| 3 | #include <asm/segment.h> | 2 | #include <asm/segment.h> |
| 4 | #include <asm/page_types.h> | 3 | #include <asm/page_types.h> |
| 5 | #include <asm/processor-flags.h> | 4 | #include <asm/processor-flags.h> |
diff --git a/arch/x86/realmode/rm/trampoline_32.S b/arch/x86/realmode/rm/trampoline_32.S index c1b2791183e7..48ddd76bc4c3 100644 --- a/arch/x86/realmode/rm/trampoline_32.S +++ b/arch/x86/realmode/rm/trampoline_32.S | |||
| @@ -20,7 +20,6 @@ | |||
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #include <linux/linkage.h> | 22 | #include <linux/linkage.h> |
| 23 | #include <linux/init.h> | ||
| 24 | #include <asm/segment.h> | 23 | #include <asm/segment.h> |
| 25 | #include <asm/page_types.h> | 24 | #include <asm/page_types.h> |
| 26 | #include "realmode.h" | 25 | #include "realmode.h" |
diff --git a/arch/x86/realmode/rm/trampoline_64.S b/arch/x86/realmode/rm/trampoline_64.S index bb360dc39d21..dac7b20d2f9d 100644 --- a/arch/x86/realmode/rm/trampoline_64.S +++ b/arch/x86/realmode/rm/trampoline_64.S | |||
| @@ -25,7 +25,6 @@ | |||
| 25 | */ | 25 | */ |
| 26 | 26 | ||
| 27 | #include <linux/linkage.h> | 27 | #include <linux/linkage.h> |
| 28 | #include <linux/init.h> | ||
| 29 | #include <asm/pgtable_types.h> | 28 | #include <asm/pgtable_types.h> |
| 30 | #include <asm/page_types.h> | 29 | #include <asm/page_types.h> |
| 31 | #include <asm/msr.h> | 30 | #include <asm/msr.h> |
diff --git a/arch/x86/vdso/vdso.S b/arch/x86/vdso/vdso.S index 01f5e3b4613c..1e13eb8c9656 100644 --- a/arch/x86/vdso/vdso.S +++ b/arch/x86/vdso/vdso.S | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <asm/page_types.h> | 1 | #include <asm/page_types.h> |
| 2 | #include <linux/linkage.h> | 2 | #include <linux/linkage.h> |
| 3 | #include <linux/init.h> | ||
| 4 | 3 | ||
| 5 | __PAGE_ALIGNED_DATA | 4 | __PAGE_ALIGNED_DATA |
| 6 | 5 | ||
diff --git a/arch/x86/vdso/vdsox32.S b/arch/x86/vdso/vdsox32.S index d6b9a7f42a8a..295f1c7543d8 100644 --- a/arch/x86/vdso/vdsox32.S +++ b/arch/x86/vdso/vdsox32.S | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | #include <asm/page_types.h> | 1 | #include <asm/page_types.h> |
| 2 | #include <linux/linkage.h> | 2 | #include <linux/linkage.h> |
| 3 | #include <linux/init.h> | ||
| 4 | 3 | ||
| 5 | __PAGE_ALIGNED_DATA | 4 | __PAGE_ALIGNED_DATA |
| 6 | 5 | ||
