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 CFC861DE4E0; Wed, 21 Jan 2026 18:25:06 +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=1769019906; cv=none; b=GoQMgWTf3NyIefFdcr5yy9EQ6X21IPhpKqRTdwORncatfz0Sinuuc4b5ae6c8iZHQQki2uwRF8KgRre46MvRT07Eg4hLpC+gpZmrg9bViVMSmjyquLOMkoD/Q3UusxvVzhr2EbHOIbfq227XwpyorM1u4hIsHXCTtOWV27QbOVc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769019906; c=relaxed/simple; bh=v8dX2dK/TPSVPU4kORhZ0cV4q7YozsttAbQ/xpXJQqk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=natQMQ0Y2mTzToKoh7xFU8g0eCtszBYH06J0xP3pH93SosR+uxvKjKzUgLQsAj0Wc9xc8cmGArriV47QjRXCfNVQ4TqvFKvMV33qe9igKM9ZK7ZWNHzOdtBGcj7Yy+pzWu6d/2p+MrsRXJZ4Gfuq5Y+WVJLcjZyEqzmASU32F7E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=g+mfFvpL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="g+mfFvpL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DFBB6C4CEF1; Wed, 21 Jan 2026 18:25:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1769019906; bh=v8dX2dK/TPSVPU4kORhZ0cV4q7YozsttAbQ/xpXJQqk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g+mfFvpLJ97nPNEuEgEXIbQe1Lcn/KSRsXhN3dEIBu7CHfBwpaWbWVxzfB17MO2/b sOmI/1GQGGxWhIkROgixcmOt5lq8JfVEQeoHIBPypUdh1m4Lgi1Fm5u/VtIvj8rCw/ sGvXBsH2H2DwiJaOQa45gBs0v03GBXkTSNXh/900= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ben Dooks , "Mike Rapoport (Microsoft)" , Andrew Morton , Sasha Levin Subject: [PATCH 6.12 132/139] mm: numa,memblock: include for numa_nodes_parsed Date: Wed, 21 Jan 2026 19:16:20 +0100 Message-ID: <20260121181416.203905014@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260121181411.452263583@linuxfoundation.org> References: <20260121181411.452263583@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ben Dooks [ Upstream commit f46c26f1bcd9164d7f3377f15ca75488a3e44362 ] 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 Reviewed-by: Mike Rapoport (Microsoft) Cc: Ben Dooks Cc: Signed-off-by: Andrew Morton Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- mm/numa_memblks.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/numa_memblks.c +++ b/mm/numa_memblks.c @@ -7,6 +7,8 @@ #include #include +#include + int numa_distance_cnt; static u8 *numa_distance;