[tip: x86/cpu] x86/cpu: Use parsed CPUID(0x0)

From: tip-bot2 for Ahmed S. Darwish

Date: Fri Jul 31 2026 - 18:26:06 EST


The following commit has been merged into the x86/cpu branch of tip:

Commit-ID: 21532edff7b08c9f9de743114375d635f95813f3
Gitweb: https://git.kernel.org/tip/21532edff7b08c9f9de743114375d635f95813f3
Author: Ahmed S. Darwish <darwi@xxxxxxxxxxxxx>
AuthorDate: Thu, 28 May 2026 17:37:31 +02:00
Committer: Borislav Petkov (AMD) <bp@xxxxxxxxx>
CommitterDate: Fri, 31 Jul 2026 13:38:26 -07:00

x86/cpu: Use parsed CPUID(0x0)

Use parsed CPUID(0x0) instead of a direct CPUID query.

[ bp: Drop the unnecessary NULL check. ]

Signed-off-by: Ahmed S. Darwish <darwi@xxxxxxxxxxxxx>
Signed-off-by: Borislav Petkov (AMD) <bp@xxxxxxxxx>
Link: https://patch.msgid.link/20260528153923.403473-10-darwi@xxxxxxxxxxxxx
---
arch/x86/kernel/cpu/common.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
index b381261..e658f76 100644
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -942,11 +942,12 @@ void get_cpu_vendor(struct cpuinfo_x86 *c)

void cpu_detect(struct cpuinfo_x86 *c)
{
- /* Get vendor name */
- cpuid(0x00000000, (unsigned int *)&c->cpuid_level,
- (unsigned int *)&c->x86_vendor_id[0],
- (unsigned int *)&c->x86_vendor_id[8],
- (unsigned int *)&c->x86_vendor_id[4]);
+ const struct leaf_0x0_0 *l0 = cpuid_leaf(c, 0x0);
+
+ c->cpuid_level = l0->max_std_leaf;
+ *(u32 *)&c->x86_vendor_id[0] = l0->cpu_vendorid_0;
+ *(u32 *)&c->x86_vendor_id[4] = l0->cpu_vendorid_1;
+ *(u32 *)&c->x86_vendor_id[8] = l0->cpu_vendorid_2;

c->x86 = 4;
/* Intel-defined flags: level 0x00000001 */