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 6359042668D for ; Tue, 20 Jan 2026 13:07:45 +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=1768914465; cv=none; b=PgGDSP//Fwny3ZheYOVYMzNtCGn9SGVo0oP3ivuGW5Ef4/4HfqB6lRjKFNcqlspRoRr6Uh8D5YE+5R9ZV00Kqg9JqQ2Fk/8WVG613rY31f+MwSPOPRnwDTpi4NfsqAMo2uYU3on8QZCYXvJfWRZqnqIuBCu2r7C4yerVgW83ICM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768914465; c=relaxed/simple; bh=N0AkI4dujeZlIBtusFG7bzzMkrvCtGCBGeNpQR9X2/U=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=hPwDHUEvDWz7a8e5cqILgKzVL7Y+tSZY+uRJaLCDwtHMNgkImm/h42RP4vKpUhMaa4N7sr8Lkgyyiy3pRiFS3+FXiD1mBdfzRXtX/wmN7XfAh37YSnNDB89RGD16gBm1zcckW3XZmb/C1Xa211M1ufyOtwm/yQETFvN+6pY1b80= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=rs6U036C; 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="rs6U036C" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 91B60C16AAE; Tue, 20 Jan 2026 13:07:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1768914465; bh=N0AkI4dujeZlIBtusFG7bzzMkrvCtGCBGeNpQR9X2/U=; h=Subject:To:Cc:From:Date:From; b=rs6U036CG/yrn6Vke8R7751qB+QG28FO0moZuMFXXt61hZvXsEsR8Z+TpoTDzy0n/ so+6OpnV40NXLgVMZkqdrPW2rBg1wkmtPvC6768p3cASEtErlclId+5zcDLEjWxg2x Umv0NU6uljp2C62/UgOqQxSHcofViYB/8WP7/FKs= Subject: FAILED: patch "[PATCH] mm: numa,memblock: include for" failed to apply to 6.12-stable tree To: ben.dooks@codethink.co.uk,akpm@linux-foundation.org,rppt@kernel.org,stable@vger.kernel.org Cc: From: Date: Tue, 20 Jan 2026 14:07:36 +0100 Message-ID: <2026012036-system-boots-1902@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.12-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.12.y git checkout FETCH_HEAD git cherry-pick -x f46c26f1bcd9164d7f3377f15ca75488a3e44362 # git commit -s git send-email --to '' --in-reply-to '2026012036-system-boots-1902@gregkh' --subject-prefix 'PATCH 6.12.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From f46c26f1bcd9164d7f3377f15ca75488a3e44362 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Thu, 8 Jan 2026 10:15:39 +0000 Subject: [PATCH] mm: numa,memblock: include for 'numa_nodes_parsed' 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 diff --git a/mm/numa_memblks.c b/mm/numa_memblks.c index 5b009a9cd8b4..8f5735fda0a2 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;