]> xenbits.xensource.com Git - xen.git/commitdiff
x86: drop pointless CONFIG_X86_HT
authorJan Beulich <jbeulich@suse.com>
Wed, 2 Jul 2014 12:52:12 +0000 (14:52 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 2 Jul 2014 12:52:12 +0000 (14:52 +0200)
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/cpu/amd.c
xen/arch/x86/cpu/common.c
xen/include/asm-x86/config.h
xen/include/asm-x86/processor.h

index 5e78f87f7838dae55ea249d0b59b52b1b8d3363e..566cdace6b52ff5f3663885520d167f3a1951907 100644 (file)
@@ -385,7 +385,6 @@ static void check_syscfg_dram_mod_en(void)
 
 static void __devinit amd_get_topology(struct cpuinfo_x86 *c)
 {
-#ifdef CONFIG_X86_HT
         int cpu;
         unsigned bits;
 
@@ -423,7 +422,6 @@ static void __devinit amd_get_topology(struct cpuinfo_x86 *c)
                                                          "Core",
                        cpu_has(c, X86_FEATURE_TOPOEXT) ? c->compute_unit_id :
                                                          c->cpu_core_id);
-#endif
 }
 
 static void __devinit init_amd(struct cpuinfo_x86 *c)
index 52d31697bcd5bab60b662007ecc77deee8b95ece..074169668bea1b1fb42262a8338389d767e62b51 100644 (file)
@@ -233,6 +233,7 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
                c->x86_model += ((tfms >> 16) & 0xF) << 4;
        c->x86_mask = tfms & 15;
        c->apicid = phys_pkg_id((ebx >> 24) & 0xFF, 0);
+       c->phys_proc_id = c->apicid;
        if ( cpu_has(c, X86_FEATURE_CLFLSH) )
                c->x86_clflush_size = ((ebx >> 8) & 0xff) * 8;
 
@@ -257,10 +258,6 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c)
        }
 
        early_intel_workaround(c);
-
-#ifdef CONFIG_X86_HT
-       c->phys_proc_id = (cpuid_ebx(1) >> 24) & 0xff;
-#endif
 }
 
 /*
@@ -429,7 +426,6 @@ void __cpuinit detect_extended_topology(struct cpuinfo_x86 *c)
        }
 }
 
-#ifdef CONFIG_X86_HT
 void __cpuinit detect_ht(struct cpuinfo_x86 *c)
 {
        u32     eax, ebx, ecx, edx;
@@ -474,7 +470,6 @@ void __cpuinit detect_ht(struct cpuinfo_x86 *c)
                               c->cpu_core_id);
        }
 }
-#endif
 
 unsigned int __init apicid_to_socket(unsigned int apicid)
 {
index 02ab1fc46b13ff9d14f07fd4d02713cb456e6aab..210ff576f39e2cd487805ff5d4f48fe47c2b8139 100644 (file)
@@ -17,7 +17,6 @@
 #define BITS_PER_XEN_ULONG BITS_PER_LONG
 
 #define CONFIG_X86 1
-#define CONFIG_X86_HT 1
 #define CONFIG_PAGING_ASSISTANCE 1
 #define CONFIG_X86_LOCAL_APIC 1
 #define CONFIG_X86_GOOD_APIC 1
index bcba0ed22406764b0c1fa857f39d05a622ffbafc..a156e01d80aee050536dccd65fa60884e0135c59 100644 (file)
@@ -211,11 +211,7 @@ extern void dodgy_tsc(void);
 
 extern void detect_extended_topology(struct cpuinfo_x86 *c);
 
-#ifdef CONFIG_X86_HT
 extern void detect_ht(struct cpuinfo_x86 *c);
-#else
-static always_inline void detect_ht(struct cpuinfo_x86 *c) {}
-#endif
 
 #define cpu_to_core(_cpu)   (cpu_data[_cpu].cpu_core_id)
 #define cpu_to_socket(_cpu) (cpu_data[_cpu].phys_proc_id)