Skip to content

Commit 8b05589

Browse files
committed
x86/topology: Fix multiple packages shown on a single-package system
Bugzilla: https://bugzilla.redhat.com/2159554 commit 2b12a7a Author: Zhang Rui <rui.zhang@intel.com> Date: Fri Oct 14 17:01:46 2022 +0800 x86/topology: Fix multiple packages shown on a single-package system CPUID.1F/B does not enumerate Package level explicitly, instead, all the APIC-ID bits above the enumerated levels are assumed to be package ID bits. Current code gets package ID by shifting out all the APIC-ID bits that Linux supports, rather than shifting out all the APIC-ID bits that CPUID.1F enumerates. This introduces problems when CPUID.1F enumerates a level that Linux does not support. For example, on a single package AlderLake-N, there are 2 Ecore Modules with 4 atom cores in each module. Linux does not support the Module level and interprets the Module ID bits as package ID and erroneously reports a multi module system as a multi-package system. Fix this by using APIC-ID bits above all the CPUID.1F enumerated levels as package ID. [ dhansen: spelling fix ] Fixes: 7745f03 ("x86/topology: Add CPUID.1F multi-die/package support") Suggested-by: Len Brown <len.brown@intel.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com> Reviewed-by: Len Brown <len.brown@intel.com> Cc: stable@vger.kernel.org Link: https://lkml.kernel.org/r/20221014090147.1836-4-rui.zhang@intel.com Signed-off-by: David Arcari <darcari@redhat.com>
1 parent a0fea88 commit 8b05589

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

arch/x86/kernel/cpu/topology.c

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ int detect_extended_topology(struct cpuinfo_x86 *c)
9696
unsigned int ht_mask_width, core_plus_mask_width, die_plus_mask_width;
9797
unsigned int core_select_mask, core_level_siblings;
9898
unsigned int die_select_mask, die_level_siblings;
99+
unsigned int pkg_mask_width;
99100
bool die_level_present = false;
100101
int leaf;
101102

@@ -111,10 +112,10 @@ int detect_extended_topology(struct cpuinfo_x86 *c)
111112
core_level_siblings = smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx);
112113
core_plus_mask_width = ht_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
113114
die_level_siblings = LEVEL_MAX_SIBLINGS(ebx);
114-
die_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
115+
pkg_mask_width = die_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
115116

116117
sub_index = 1;
117-
do {
118+
while (true) {
118119
cpuid_count(leaf, sub_index, &eax, &ebx, &ecx, &edx);
119120

120121
/*
@@ -132,8 +133,13 @@ int detect_extended_topology(struct cpuinfo_x86 *c)
132133
die_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
133134
}
134135

136+
if (LEAFB_SUBTYPE(ecx) != INVALID_TYPE)
137+
pkg_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
138+
else
139+
break;
140+
135141
sub_index++;
136-
} while (LEAFB_SUBTYPE(ecx) != INVALID_TYPE);
142+
}
137143

138144
core_select_mask = (~(-1 << core_plus_mask_width)) >> ht_mask_width;
139145
die_select_mask = (~(-1 << die_plus_mask_width)) >>
@@ -148,7 +154,7 @@ int detect_extended_topology(struct cpuinfo_x86 *c)
148154
}
149155

150156
c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid,
151-
die_plus_mask_width);
157+
pkg_mask_width);
152158
/*
153159
* Reinit the apicid, now that we have extended initial_apicid.
154160
*/

0 commit comments

Comments
 (0)