From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA089C433E6 for ; Fri, 12 Mar 2021 09:21:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8E76D6500F for ; Fri, 12 Mar 2021 09:21:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232756AbhCLJVR (ORCPT ); Fri, 12 Mar 2021 04:21:17 -0500 Received: from mail.kernel.org ([198.145.29.99]:45656 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232552AbhCLJVI (ORCPT ); Fri, 12 Mar 2021 04:21:08 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id 2130464FE0; Fri, 12 Mar 2021 09:21:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1615540868; bh=HKyzLPWLU/FWL7rz8JEjHBFhc9WIdajW+NR/EByr3kc=; h=From:To:Cc:Subject:Date:From; b=iuZ39FOeACJa0lsjB/CIP8vCYlh5EXP/6LFVPl//kTg/tFdLV+EL82Lv5jZ/QNb1r 8xUO4hcT03dZWaHUTo6XkwJgkObfnIpaU3ijuQwzXW8seMp8aiNY+Kg7CN5zWxJsA7 +YlFhRUahfO2vrpmCUNk5AJ+XKzR64MBx+VrIn+ZYiCe6x82gsPTcvpfZRzElNAJ0k 2f3TUzQ3ptT5pYWNG+nOmBkgkwttpTWsQboaN+W8xbTDQ/fz2IV4OFHJGj25VKGOTS MyEpP/alSPOKFmC7xVJrIC8ZrZz2I8Ww6dH8L+PBWKOHA/JEU11JWgNlDJ4cqYPURx CB+ewXtt+Utzw== Received: from johan by xi.lan with local (Exim 4.93.0.4) (envelope-from ) id 1lKdyx-0006rQ-CS; Fri, 12 Mar 2021 10:21:20 +0100 From: Johan Hovold To: Thomas Gleixner , x86@kernel.org Cc: Ingo Molnar , Borislav Petkov , "H. Peter Anvin" , Rob Herring , linux-kernel@vger.kernel.org, Sebastian Andrzej Siewior , Jens Frederich , Jon Nettleton , Johan Hovold , stable@vger.kernel.org Subject: [PATCH v2 RESEND] x86/apic/of: Fix CPU devicetree-node lookups Date: Fri, 12 Mar 2021 10:20:33 +0100 Message-Id: <20210312092033.26317-1-johan@kernel.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Architectures that describe the CPU topology in devicetree and that do not have an identity mapping between physical and logical CPU ids need to override the default implementation of arch_match_cpu_phys_id(). Failing to do so breaks CPU devicetree-node lookups using of_get_cpu_node() and of_cpu_device_node_get() which several drivers rely on. It also causes the CPU struct devices exported through sysfs to point to the wrong devicetree nodes. On x86, CPUs are described in devicetree using their APIC ids and those do not generally coincide with the logical ids, even if CPU0 typically uses APIC id 0. Add the missing implementation of arch_match_cpu_phys_id() so that CPU-node lookups work also with SMP. Apart from fixing the broken sysfs devicetree-node links this likely do not affect current users of mainline kernels on x86. Fixes: 4e07db9c8db8 ("x86/devicetree: Use CPU description from Device Tree") Cc: stable@vger.kernel.org # 4.17 Signed-off-by: Johan Hovold --- arch/x86/kernel/apic/apic.c | 5 +++++ 1 file changed, 5 insertions(+) It's been over three months so resending. Can someone please pick this up for 5.12 or -next? Again, my use case for this is still out-of-tree, but since CPU-node lookup is generic functionality and with observable impact also for mainline users (sysfs) I added a stable tag in v2. Just drop the tag if you think it's unwarranted. Johan Changes in v2 - rewrite commit message - add Fixes tag - add stable tag for the benefit of out-of-tree users diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 6bd20c0de8bc..7cb93a4f4524 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -2330,6 +2330,11 @@ static int cpuid_to_apicid[] = { [0 ... NR_CPUS - 1] = -1, }; +bool arch_match_cpu_phys_id(int cpu, u64 phys_id) +{ + return phys_id == cpuid_to_apicid[cpu]; +} + #ifdef CONFIG_SMP /** * apic_id_is_primary_thread - Check whether APIC ID belongs to a primary thread -- 2.26.2