From nobody Fri Dec 19 15:46:35 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 57A8AC001DB for ; Mon, 7 Aug 2023 13:54:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234528AbjHGNyq (ORCPT ); Mon, 7 Aug 2023 09:54:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41236 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234589AbjHGNxe (ORCPT ); Mon, 7 Aug 2023 09:53:34 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1F57919B5 for ; Mon, 7 Aug 2023 06:53:27 -0700 (PDT) Message-ID: <20230807135028.161442319@linutronix.de> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1691416405; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=v+176pp9ACIIPvLc6LDktKyoU9X9mReBTN4+zBUGjJ0=; b=3MJAVBOyeqWg+qSoumYYElftm3Sj3O9raM/01lyZenNB8+4NpMSykM4UoZv0bN8RFX/a1M vweOBTgXt91vD5pnnUGl7araPthxkzw7/oGD4Ti41s/GH5eIGNPWE/9FY9NZAuaQcCQCdY 4XQWDmzjoqdo65zJrueUdBi2iBJRghqjsXNR0ybbDFBk36zyYRHAd21Bj4wX2IswkpKhKE SmSk4Wm++OlNU0Ci48xXcuMcQHyCafLbqHeyID1vmlOXbeIUDGncRvikpwnTSD0agD3KYs G2Wtm39HEQokotO2z5usTSVgH581qGkNffIeFieYsDqC/sytBpNc8vQaKDvr1A== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1691416405; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=v+176pp9ACIIPvLc6LDktKyoU9X9mReBTN4+zBUGjJ0=; b=/YrelmPGc4/3kKdLXjSqR4pk8rqpMbhIIEJ3nii5pjz+WTr7GDQKm2bRKegxKj29p2zFT5 ZY6bN47weaoxzkAw== From: Thomas Gleixner To: LKML Cc: x86@kernel.org, Tom Lendacky , Andrew Cooper , Arjan van de Ven , Huang Rui , Juergen Gross , Dimitri Sivanich , Michael Kelley , Sohil Mehta , K Prateek Nayak , Kan Liang , Zhang Rui , "Paul E. McKenney" , Feng Tang , Andy Shevchenko Subject: [patch 33/53] x86/cpu/topology: Use a data structure for topology info References: <20230807130108.853357011@linutronix.de> MIME-Version: 1.0 Date: Mon, 7 Aug 2023 15:53:25 +0200 (CEST) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Put the processor accounting into a data structure, which will gain more topology related information in the next steps, and sanitize the accounting. Signed-off-by: Thomas Gleixner --- arch/x86/kernel/cpu/topology.c | 59 ++++++++++++++++++++----------------= ----- 1 file changed, 29 insertions(+), 30 deletions(-) --- a/arch/x86/kernel/cpu/topology.c +++ b/arch/x86/kernel/cpu/topology.c @@ -23,25 +23,24 @@ DECLARE_BITMAP(phys_cpu_present_map, MAX u32 cpuid_to_apicid[] __read_mostly =3D { [0 ... NR_CPUS - 1] =3D BAD_APIC= ID, }; =20 /* + * Keep track of assigned, disabled and rejected CPUs. Present assigned + * with 1 as CPU #0 is reserved for the boot CPU. + */ +struct { + unsigned int nr_assigned_cpus; + unsigned int nr_disabled_cpus; + unsigned int nr_rejected_cpus; +} topo_info __read_mostly =3D { + .nr_assigned_cpus =3D 1, +}; + +/* * Processor to be disabled specified by kernel parameter * disable_cpu_apicid=3D, mostly used for the kdump 2nd kernel to * avoid undefined behaviour caused by sending INIT from AP to BSP. */ static u32 disabled_cpu_apicid __ro_after_init =3D BAD_APICID; =20 -static unsigned int num_processors; -static unsigned int disabled_cpus; - -/* - * The number of allocated logical CPU IDs. Since logical CPU IDs are allo= cated - * contiguously, it equals to current allocated max logical CPU ID plus 1. - * All allocated CPU IDs should be in the [0, nr_logical_cpuids) range, - * so the maximum of nr_logical_cpuids is nr_cpu_ids. - * - * NOTE: Reserve 0 for BSP. - */ -static int nr_logical_cpuids =3D 1; - bool arch_match_cpu_phys_id(int cpu, u64 phys_id) { return phys_id =3D=3D (u64)cpuid_to_apicid[cpu]; @@ -75,7 +74,7 @@ static int __init smp_init_primary_threa return 0; } =20 - for (cpu =3D 0; cpu < nr_logical_cpuids; cpu++) + for (cpu =3D 0; cpu < topo_info.nr_assigned_cpus; cpu++) cpu_mark_primary_thread(cpu, cpuid_to_apicid[cpu]); return 0; } @@ -89,7 +88,7 @@ static int topo_lookup_cpuid(u32 apic_id int i; =20 /* CPU# to APICID mapping is persistent once it is established */ - for (i =3D 0; i < nr_logical_cpuids; i++) { + for (i =3D 0; i < topo_info.nr_assigned_cpus; i++) { if (cpuid_to_apicid[i] =3D=3D apic_id) return i; } @@ -107,22 +106,21 @@ static int allocate_logical_cpuid(u32 ap if (cpu >=3D 0) return cpu; =20 - cpuid_to_apicid[nr_logical_cpuids] =3D apic_id; - return nr_logical_cpuids++; + return topo_info.nr_assigned_cpus++; } =20 -static void cpu_update_apic(int cpu, u32 apicid) +static void cpu_update_apic(unsigned int cpu, u32 apic_id) { #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) - early_per_cpu(x86_cpu_to_apicid, cpu) =3D apicid; + early_per_cpu(x86_cpu_to_apicid, cpu) =3D apic_id; #endif + cpuid_to_apicid[cpu] =3D apic_id; set_cpu_possible(cpu, true); - set_bit(apicid, phys_cpu_present_map); + set_bit(apic_id, phys_cpu_present_map); set_cpu_present(cpu, true); - num_processors++; =20 if (system_state !=3D SYSTEM_BOOTING) - cpu_mark_primary_thread(cpu, apicid); + cpu_mark_primary_thread(cpu, apic_id); } =20 static int generic_processor_info(int apicid) @@ -137,18 +135,18 @@ static int generic_processor_info(int ap return 0; =20 if (disabled_cpu_apicid =3D=3D apicid) { - int thiscpu =3D num_processors + disabled_cpus; + int thiscpu =3D topo_info.nr_assigned_cpus + topo_info.nr_disabled_cpus; =20 pr_warn("APIC: Disabling requested cpu. Processor %d/0x%x ignored.\n", thiscpu, apicid); =20 - disabled_cpus++; + topo_info.nr_rejected_cpus++; return -ENODEV; } =20 - if (num_processors >=3D nr_cpu_ids) { + if (topo_info.nr_assigned_cpus >=3D nr_cpu_ids) { pr_warn_once("APIC: CPU limit of %d reached. Ignoring further CPUs\n", n= r_cpu_ids); - disabled_cpus++; + topo_info.nr_rejected_cpus++; return -ENOSPC; } =20 @@ -178,14 +176,16 @@ static int __initdata setup_possible_cpu */ __init void prefill_possible_map(void) { + unsigned int num_processors =3D topo_info.nr_assigned_cpus; + unsigned int disabled_cpus =3D topo_info.nr_disabled_cpus; int i, possible; =20 i =3D setup_max_cpus ?: 1; if (setup_possible_cpus =3D=3D -1) { - possible =3D num_processors; + possible =3D topo_info.nr_assigned_cpus; #ifdef CONFIG_HOTPLUG_CPU if (setup_max_cpus) - possible +=3D disabled_cpus; + possible +=3D num_processors; #else if (possible > i) possible =3D i; @@ -238,7 +238,7 @@ void __init topology_register_apic(u32 a } =20 if (!present) { - disabled_cpus++; + topo_info.nr_disabled_cpus++; return; } =20 @@ -295,7 +295,6 @@ void topology_hotunplug_apic(unsigned in per_cpu(x86_cpu_to_apicid, cpu) =3D BAD_APICID; clear_bit(apic_id, phys_cpu_present_map); set_cpu_present(cpu, false); - num_processors--; } #endif