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 879E7C55ABF for ; Thu, 6 Aug 2026 07:06:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=YXarO7d01rBMjVZiNOHN3SqWwbuqKQsLQ5Tblc++8DU=; b=zQvS/tMWdCIH3S RompL/FI9TS5d7KV+ep7n1Q9swaK6qgzgENBWsEyYjyABdMAFrbx5QfWCJbQkS2paXHt0IweJ4m/0 FL6+6TVnGHQuayka/UxAOt5EDXiod5n2YjfIKzrcI679WXP7+VpB+lEyKrtPfkSMVnUthT4zFihaw gTuwsZe4uQnLxCu1LVzlGcLStUWWjA00STi/Gl9R9Xr6IX4Ai03s0124QS2uJV4jl5OIciKrgB3xf TRrCXno0zKDvrOwGLaCFX6FyZSF51cDiAKxnIPsqcJoIvdZ3BZnpa+wkHTenohCT6EpwEi9hFBdQI 1142ZG7XKhVvXNGCQiGg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.99.1 #2 (Red Hat Linux)) id 1wrsBW-000000056qV-2xyv; Thu, 06 Aug 2026 07:06:34 +0000 Received: from tor.source.kernel.org ([172.105.4.254]) by bombadil.infradead.org with esmtps (Exim 4.99.1 #2 (Red Hat Linux)) id 1wrsBV-000000056qI-3NGF; Thu, 06 Aug 2026 07:06:33 +0000 Received: from smtp.kernel.org (quasi.space.kernel.org [100.103.45.18]) by tor.source.kernel.org (Postfix) with ESMTP id 3F4F060A64; Thu, 6 Aug 2026 07:06:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EBE731F000E9; Thu, 6 Aug 2026 07:06:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1785999993; bh=XcPioRNMll3r5OmjiUG/O8aq5a3hSQJFiegnJyFSvIo=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=TwW+Ap/66ZcREdQqckrwX9vkc4Z93jN+7IIPxPYOiPbMC7JQJLgHtNmGACiqreIOl 6VtKD+H1WXaB8vi7L7DUqflVCLVDxKlXaQOa27Y1xlE94I5MQBOCxaLpGxu8w95yxa nLR7i2qRWqCJjI04VZ4iK2rOwaTxETtqALN8uBB0LDAJipUR20/MLuflvSH4jZOaTt FA29yzKuOloFl8WVrOPL8Sah+FiTPLMEt4IBdUmubGhXtw99looSINmmGHL01wl69L MBjZU/REIsuooI/qb4X3q+UnhFlXJ4tn0gO4xtQOKfODXHmcQcBGGM/SzMw2jWtOmc oc1hySP12bYdg== Date: Thu, 6 Aug 2026 08:06:12 +0100 From: "Lorenzo Stoakes (ARM)" To: "Mike Rapoport (Microsoft)" Cc: Andrew Morton , Albert Ou , Alexandre Ghiti , Catalin Marinas , Danilo Krummrich , David Hildenbrand , Greg Kroah-Hartman , "Liam R. Howlett" , Michal Hocko , Palmer Dabbelt , Paul Walmsley , "Rafael J. Wysocki" , Suren Baghdasaryan , Vlastimil Babka , Will Deacon , driver-core@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-riscv@lists.infradead.org Subject: Re: [PATCH] drivers/base, mm: move arch_numa.c to mm/ Message-ID: References: <20260806-arch-numa-v1-1-968ec128121e@kernel.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20260806-arch-numa-v1-1-968ec128121e@kernel.org> X-BeenThere: linux-riscv@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-riscv" Errors-To: linux-riscv-bounces+linux-riscv=archiver.kernel.org@lists.infradead.org On Thu, Aug 06, 2026 at 09:58:38AM +0300, Mike Rapoport (Microsoft) wrote: > arch_numa.c implements boot time discovery and initialization of NUMA > topology on architectures that select GENERIC_ARCH_NUMA (currently arm64 > and riscv). > > Since this is step in the initialization of the memory management > subsystem, it's logical to have arch_numa.c in mm/ alongside numa.c, > numa_memblks.c and numa_emulation.c. > > Move arch_numa.c to mm/ and add its F: entry to "MEMBLOCK AND MEMORY > MANAGEMENT INITIALIZATION" in MAINTAINERS. > > Signed-off-by: Mike Rapoport (Microsoft) Everything is proceeding as I have foreseen... soon we shall have control of all of the kernel! ;) Acked-by: Lorenzo Stoakes (ARM) > --- > MAINTAINERS | 1 + > drivers/base/Kconfig | 7 ------- > drivers/base/Makefile | 1 - > mm/Kconfig | 7 +++++++ > mm/Makefile | 1 + > {drivers/base => mm}/arch_numa.c | 0 > 6 files changed, 9 insertions(+), 8 deletions(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 5114e6db7307..465b64f8e93c 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -16880,6 +16880,7 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock.git fixes > F: Documentation/core-api/boot-time-mm.rst > F: include/linux/kho/abi/memblock.h > F: include/linux/memblock.h > +F: mm/arch_numa.c > F: mm/bootmem_info.c > F: mm/memblock.c > F: mm/memtest.c > diff --git a/drivers/base/Kconfig b/drivers/base/Kconfig > index f7d385cbd3ba..1d93bfc34490 100644 > --- a/drivers/base/Kconfig > +++ b/drivers/base/Kconfig > @@ -239,13 +239,6 @@ config GENERIC_ARCH_TOPOLOGY > appropriate scaling, sysfs interface for reading capacity values at > runtime. > > -config GENERIC_ARCH_NUMA > - bool > - select NUMA_MEMBLKS > - help > - Enable support for generic NUMA implementation. Currently, RISC-V > - and ARM64 use it. > - > config FW_DEVLINK_SYNC_STATE_TIMEOUT > bool "sync_state() behavior defaults to timeout instead of strict" > help > diff --git a/drivers/base/Makefile b/drivers/base/Makefile > index 8074a10183dc..435710f643a5 100644 > --- a/drivers/base/Makefile > +++ b/drivers/base/Makefile > @@ -25,7 +25,6 @@ obj-$(CONFIG_PINCTRL) += pinctrl.o > obj-$(CONFIG_DEV_COREDUMP) += devcoredump.o > obj-$(CONFIG_GENERIC_MSI_IRQ) += platform-msi.o > obj-$(CONFIG_GENERIC_ARCH_TOPOLOGY) += arch_topology.o > -obj-$(CONFIG_GENERIC_ARCH_NUMA) += arch_numa.o > obj-$(CONFIG_ACPI) += physical_location.o > > obj-y += test/ > diff --git a/mm/Kconfig b/mm/Kconfig > index 9e0ca4824905..410b8a0a92b9 100644 > --- a/mm/Kconfig > +++ b/mm/Kconfig > @@ -1469,6 +1469,13 @@ config NUMA_EMU > into virtual nodes when booted with "numa=fake=N", where N is the > number of nodes. This is only useful for debugging. > > +config GENERIC_ARCH_NUMA > + bool > + select NUMA_MEMBLKS > + help > + Enable support for generic NUMA implementation. Currently, RISC-V > + and ARM64 use it. > + > config ARCH_HAS_USER_SHADOW_STACK > bool > help > diff --git a/mm/Makefile b/mm/Makefile > index eff9f9e7e061..fd29be716fa8 100644 > --- a/mm/Makefile > +++ b/mm/Makefile > @@ -122,6 +122,7 @@ obj-$(CONFIG_CMA) += cma.o > obj-$(CONFIG_NUMA) += numa.o > obj-$(CONFIG_NUMA_MEMBLKS) += numa_memblks.o > obj-$(CONFIG_NUMA_EMU) += numa_emulation.o > +obj-$(CONFIG_GENERIC_ARCH_NUMA) += arch_numa.o > obj-$(CONFIG_BALLOON) += balloon.o > obj-$(CONFIG_PAGE_EXTENSION) += page_ext.o > obj-$(CONFIG_PAGE_TABLE_CHECK) += page_table_check.o > diff --git a/drivers/base/arch_numa.c b/mm/arch_numa.c > similarity index 100% > rename from drivers/base/arch_numa.c > rename to mm/arch_numa.c > > --- > base-commit: 075b74841bd0065a3bda3440873c747938e69b68 > change-id: 20260806-arch-numa-444bb4806114 > > -- > Sincerely yours, > Mike. > -- Cheers, Lorenzo _______________________________________________ linux-riscv mailing list linux-riscv@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-riscv