]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
x86: Axe the lightly-used cpu_has_pae
authorDave Hansen <dave.hansen@linux.intel.com>
Thu, 11 Sep 2014 21:15:11 +0000 (14:15 -0700)
committerH. Peter Anvin <hpa@linux.intel.com>
Thu, 11 Sep 2014 21:30:01 +0000 (14:30 -0700)
cpu_has_pae is only referenced in one place: the X86_32 kexec
code (in a file not even built on 64-bit).  It hardly warrants
its own macro, or the trouble we go to ensuring that it can't
be called in X86_64 code.

Axe the macro and replace it with a direct cpu feature check.

Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Link: http://lkml.kernel.org/r/20140911211511.AD76E774@viggo.jf.intel.com
Acked-by: Borislav Petkov <bp@suse.de>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/include/asm/cpufeature.h
arch/x86/kernel/machine_kexec_32.c

index bb9b258d60e76e9c3dfc3cefe8c7f74ac80e3caf..7b508758dfadd05252df235ddbc1c9d9eb93e786 100644 (file)
@@ -300,7 +300,6 @@ extern const char * const x86_bug_flags[NBUGINTS*32];
 #define cpu_has_de             boot_cpu_has(X86_FEATURE_DE)
 #define cpu_has_pse            boot_cpu_has(X86_FEATURE_PSE)
 #define cpu_has_tsc            boot_cpu_has(X86_FEATURE_TSC)
-#define cpu_has_pae            boot_cpu_has(X86_FEATURE_PAE)
 #define cpu_has_pge            boot_cpu_has(X86_FEATURE_PGE)
 #define cpu_has_apic           boot_cpu_has(X86_FEATURE_APIC)
 #define cpu_has_sep            boot_cpu_has(X86_FEATURE_SEP)
@@ -358,9 +357,6 @@ extern const char * const x86_bug_flags[NBUGINTS*32];
 #undef  cpu_has_vme
 #define cpu_has_vme            0
 
-#undef  cpu_has_pae
-#define cpu_has_pae            ___BUG___
-
 #undef  cpu_has_k6_mtrr
 #define cpu_has_k6_mtrr                0
 
index 1667b1de8d5d62c1b10f4b702c7e9699902f8406..72e8e310258d610c8a05f89920ddf101deb92a05 100644 (file)
@@ -247,7 +247,8 @@ void machine_kexec(struct kimage *image)
        /* now call it */
        image->start = relocate_kernel_ptr((unsigned long)image->head,
                                           (unsigned long)page_list,
-                                          image->start, cpu_has_pae,
+                                          image->start,
+                                          boot_cpu_has(X86_FEATURE_PAE),
                                           image->preserve_context);
 
 #ifdef CONFIG_KEXEC_JUMP