From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 893C2230BCB; Thu, 8 Jan 2026 18:52:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767898349; cv=none; b=DGpKHwNovmmjqjyC92jT6YYweGPsdnC2vBD9P00JEonN5ujQAUv0lHZgBwqOfR5xdhq+GRCVMfdTKCdzsEwh/Ai3Zay5wm06adAhtofrxJBFX4jI/FTyh/27YILTdNyA/7SZxqsEVVMOuQxe1/zPe88PBxcoTKs4B6af0hMpLcw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767898349; c=relaxed/simple; bh=7QifOqS9kDsEluvc7c9EoJ52paAV7/lFgsKc0D0TAPQ=; h=Date:To:From:Subject:Message-Id; b=G9qalU3S2GJG/XPmfo+0PZWm0A+/yBMAlIRe46Ngwybe0l0OnZ4K9fXTJ8/FkXgOF55cVoSVArH3NGjXNrkEMkjfz+7qOVo7spiiP9/94fLui2RHLHskBQPNt71Ny6lkMlcowuD86opNKuzLxG4phyX+f3jenheEv+m6Y7wtPk8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=qpW4RnD6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="qpW4RnD6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01A07C116C6; Thu, 8 Jan 2026 18:52:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1767898349; bh=7QifOqS9kDsEluvc7c9EoJ52paAV7/lFgsKc0D0TAPQ=; h=Date:To:From:Subject:From; b=qpW4RnD6T8Z20aCCclv45fdT5RUEyWt5eG+m0IBm4dUVHow/Er6LuTPbqsHVT/ivD 1k8XtLiDwAQJIEssVP6goAm3041am5fEGO+59FbvHd5NvSs6r467UysoZnNuYoLmeO ynXMyh40Rrel/LbaoEsbCvTUbqQfmH3Sn6lkjORs= Date: Thu, 08 Jan 2026 10:52:28 -0800 To: mm-commits@vger.kernel.org,stable@vger.kernel.org,rppt@kernel.org,ben.dooks@codethink.co.uk,akpm@linux-foundation.org From: Andrew Morton Subject: + mm-numamemblock-include-asm-numah-for-numa_nodes_parsed.patch added to mm-hotfixes-unstable branch Message-Id: <20260108185229.01A07C116C6@smtp.kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The patch titled Subject: mm: numa,memblock: include for 'numa_nodes_parsed' has been added to the -mm mm-hotfixes-unstable branch. Its filename is mm-numamemblock-include-asm-numah-for-numa_nodes_parsed.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/mm-numamemblock-include-asm-numah-for-numa_nodes_parsed.patch This patch will later appear in the mm-hotfixes-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via various branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there most days ------------------------------------------------------ From: Ben Dooks Subject: mm: numa,memblock: include for 'numa_nodes_parsed' Date: Thu, 8 Jan 2026 10:15:39 +0000 The 'numa_nodes_parsed' is defined in but this file is not included in mm/numa_memblks.c (build x86_64) so add this to the incldues to fix the following sparse warning: mm/numa_memblks.c:13:12: warning: symbol 'numa_nodes_parsed' was not declared. Should it be static? Link: https://lkml.kernel.org/r/20260108101539.229192-1-ben.dooks@codethink.co.uk Fixes: 87482708210f ("mm: introduce numa_memblks") Signed-off-by: Ben Dooks Cc: Ben Dooks Cc: Mike Rapoport Cc: Signed-off-by: Andrew Morton --- mm/numa_memblks.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/numa_memblks.c~mm-numamemblock-include-asm-numah-for-numa_nodes_parsed +++ a/mm/numa_memblks.c @@ -7,6 +7,8 @@ #include #include +#include + int numa_distance_cnt; static u8 *numa_distance; _ Patches currently in -mm which might be from ben.dooks@codethink.co.uk are mm-numamemblock-include-asm-numah-for-numa_nodes_parsed.patch