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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id D5F00C30658 for ; Tue, 2 Jul 2024 07:45:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:CC:To:Subject:MIME-Version:Date: Message-ID:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=vLOAjPgCtPmrjFjs5uadw0A44phcfL0wz1K5bb2XMi8=; b=glYFlKt2PGC9QErIBPxL+uBo9/ qzIl4FwlWnPZp2+JVW5nPJjAdpcXv5Ewi5pS7o5i208CxrbpkXDN02KnNTsA+813ODVpwQc/+XuXI nX1cqruIxNdtgiZjBJsvkZ+ODrFiz4x0eELwkfbE3wPHCfIS/0/n0sQGRL50mZ1aNSfsEiuZG7z/Y hhmC1wCqlcwKZwZVVSYSHwK09xDimQFsOROwc+9IUkFdMV71CFocp2cIDKOxT9dDFTkeAu5j+e6uA RkHisxi/IN1hs92RiFWhA3Wus+3minrjnYeB5OymD0e4Ep23iaAEUJ2f7zgWr1aY7xaTVhMaQL96T JmPMz5vw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sOYCT-00000005tsG-1vQ1; Tue, 02 Jul 2024 07:45:17 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sOYCH-00000005toZ-2lp2 for linux-arm-kernel@lists.infradead.org; Tue, 02 Jul 2024 07:45:07 +0000 Received: from mail.maildlp.com (unknown [172.19.88.105]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4WCvzF6k6Hzdfx9; Tue, 2 Jul 2024 15:43:21 +0800 (CST) Received: from kwepemi100008.china.huawei.com (unknown [7.221.188.57]) by mail.maildlp.com (Postfix) with ESMTPS id 8BE94140488; Tue, 2 Jul 2024 15:44:58 +0800 (CST) Received: from [10.67.109.254] (10.67.109.254) by kwepemi100008.china.huawei.com (7.221.188.57) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Tue, 2 Jul 2024 15:44:57 +0800 Message-ID: Date: Tue, 2 Jul 2024 15:44:56 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0 Subject: Re: [PATCH 0/2] ARM: 9322/1: Switch over to GENERIC_CPU_DEVICES Content-Language: en-US To: "Russell King (Oracle)" CC: , , , , , , , , , , , , References: <20240702065906.929987-1-ruanjinjie@huawei.com> From: Jinjie Ruan In-Reply-To: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.109.254] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemi100008.china.huawei.com (7.221.188.57) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240702_004505_928848_E320F801 X-CRM114-Status: GOOD ( 14.01 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 2024/7/2 15:30, Russell King (Oracle) wrote: > What's going on with the subject in all of this series? Why does it > contain: > > "ARM: 9322/1" > > ? > > We already have: > "3562257b3416 ARM: 9322/1: Explicitly include correct DT includes" > > Merged in the kernel tree, and this has nothing to do with it. Moreover, > these numbers are generated by the patch system and are supposed to be > unique to each patch. The title refers to "git log --online arch/arm/kernel/setup.c", I misunderstood its meaning, I'll resend it and remove it, thank you very much. > > On Tue, Jul 02, 2024 at 02:59:04PM +0800, Jinjie Ruan wrote: >> Currently, almost all architectures have switched to GENERIC_CPU_DEVICES, >> except for arm32. Also switch over to GENERIC_CPU_DEVICES, which can also >> make the code more concise. >> >> Jinjie Ruan (2): >> ARM: 9322/1: Switch over to GENERIC_CPU_DEVICES using >> arch_register_cpu() >> ARM: 9322/1: Convert to arch_cpu_is_hotpluggable() >> >> arch/arm/Kconfig | 1 + >> arch/arm/include/asm/cpu.h | 1 - >> arch/arm/kernel/setup.c | 14 ++------------ >> 3 files changed, 3 insertions(+), 13 deletions(-) >> >> -- >> 2.34.1 >> >> >