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 4011935505C for ; Wed, 21 Jan 2026 03:06:59 +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=1768964819; cv=none; b=L+eUl1PRUNuGTYs4IejZEMDZFhe+1g6iVKz+JkTYfHhihrJZcvLSciuMpJYE0sTsKzQPc8op5WllgYCsPUOz+3MnFZSjHo27ZlnuFr5tts125ApoPRYyIGa2mGBjx+G7TtGi8H/RiUSAQshMjyluBzKlvWoRf3jelCcV4Oo+fnM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768964819; c=relaxed/simple; bh=ehe0bHOiY9iyv8U1cp0UURd/EWYWC1T6p+ugFIcRUA0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=X9z3ptKiVrdDCbdryM8rQrwB+Md/xOTHJeq7aIjypyo1GR3L6IUK3ZvEBLRJaMMbGWG8P0UgTi5vqixNSE6MLwvhyEJVq8HWjF8Ju6aXWYVF9wwv+A0XxlOUOX8ykLEyp1aw9IdI7daR6mQLBHyypJ9h096YYmmKJo8gdleU0vA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CcqZXg40; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="CcqZXg40" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 86897C19423; Wed, 21 Jan 2026 03:06:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768964819; bh=ehe0bHOiY9iyv8U1cp0UURd/EWYWC1T6p+ugFIcRUA0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CcqZXg40+rklQFF2nEAqcn3p7wM8zvHrE3MORsf71x6Ch4nj8gzww9CurQt7TG3gQ FobivhrJ2wnqo2cE5O5DL+bthp3HIAN4VcgzQYrDo/N1h+gw/M32hmTa7OYNltxrnC v+QgJxbK6ihU0SIIALxJkRKQRzJdt0OygMB+fZQt1NHo7FsX2jI5xjGVF/5BoQd8yq GHXLOrAcF427GC0ou01ZY2rqrHSkOH+wCDANi9m1TFdgtRfzGMgGBj1LcicEhcYFln tDshKPxRNMGbrUIEg2VssqYK/R8L9SbYHiacOjhwytR+Mf0CavosqrIPtIw+huwv6i WgL87CwD3UyIg== From: Sasha Levin To: stable@vger.kernel.org Cc: Ben Dooks , "Mike Rapoport (Microsoft)" , Andrew Morton , Sasha Levin Subject: [PATCH 6.12.y 2/2] mm: numa,memblock: include for 'numa_nodes_parsed' Date: Tue, 20 Jan 2026 22:06:55 -0500 Message-ID: <20260121030655.1173340-2-sashal@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20260121030655.1173340-1-sashal@kernel.org> References: <2026012036-system-boots-1902@gregkh> <20260121030655.1173340-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 --- mm/numa_memblks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mm/numa_memblks.c b/mm/numa_memblks.c index ff4054f4334da..c447add277ccd 100644 --- 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; -- 2.51.0