diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-06-17 12:21:41 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-17 12:21:41 -0400 |
commit | 813400060fe2824163cabd9afed4e476e7ce282e (patch) | |
tree | 22141d6e937991761345a63dd80125be13eb50ea /arch/x86/kernel/cpu/common.c | |
parent | 1bf7b31efa0c322d93cb3f772cd9bc743e8bb42d (diff) | |
parent | fe955e5c793aab398794be4c5ede172d48446c4a (diff) |
Merge branch 'x86/urgent' into x86/mce3
Conflicts:
arch/x86/kernel/cpu/mcheck/mce_intel.c
Merge reason: merge with an urgent-branch MCE fix.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/common.c')
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 3ffdcfa9abdf..5b9cb8839cae 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -853,6 +853,9 @@ static void __cpuinit identify_cpu(struct cpuinfo_x86 *c) | |||
853 | #if defined(CONFIG_NUMA) && defined(CONFIG_X86_64) | 853 | #if defined(CONFIG_NUMA) && defined(CONFIG_X86_64) |
854 | numa_add_cpu(smp_processor_id()); | 854 | numa_add_cpu(smp_processor_id()); |
855 | #endif | 855 | #endif |
856 | |||
857 | /* Cap the iomem address space to what is addressable on all CPUs */ | ||
858 | iomem_resource.end &= (1ULL << c->x86_phys_bits) - 1; | ||
856 | } | 859 | } |
857 | 860 | ||
858 | #ifdef CONFIG_X86_64 | 861 | #ifdef CONFIG_X86_64 |