From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 CF61443E9CB; Mon, 17 Aug 2026 14:53:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786978442; cv=none; b=X/wjyjY+2YACVvpg396yM1PlOCGwII+e7476Fq8SuTp1XvNvYOfq9+G2GzeI0SxD3KqVGm4865IX2h/JXTgFx1y3X2ZnHZFvztyL7Gdo3wnho6pup+HN9E50D1tvneRTLJ2REeUvhkg+yvaF7+aZ50ttCCe2spTnN/UZ/JX+fZo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786978442; c=relaxed/simple; bh=MESuH4wiW0c2PH2v42veObtdkYGxbqTXhim8dLAxL3Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=M3sH3XfYqV2HPmoYKvgihZeGZfv0zgaiY72Bd2ejn8ajtEMixARPqvZboigQmHgaBjvqElwXpQhUZ0/ULWAXWxlFxvylZnIr7YiLR5HfeTwTMPOPWIiuURCUHD29EvjHLwz8iLU99ZXi0PGQEd6bfeS3RhwgnCSEEraSL/+TgC8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=beZcb+2W; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="beZcb+2W" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 703241F00A3D; Mon, 17 Aug 2026 14:53:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786978439; bh=JbmnTxZWKyFIouN63q7R3P64CVos8TJnEhxiRKMi8lo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=beZcb+2Wd0+DM8hPtLSfYVxlhdQ53kn6oWtsF6QyDzqoz78Om4Eon4xnSmOJbr9RC COf2nMXtl9ULFqahDcJVFAT1okmfrqNxIRpZINmRMTMo01Vr1/LVbiA+MCToWlk2yU VzZyejuVZjyPHOH6+zYsq9/BSHEnGSNkB273ijew= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yuho Choi , Avi Fishman , Andrew Jeffery , Sasha Levin Subject: [PATCH 6.6 005/156] ARM: npcm: Fix OF node refcount leaks in SMP setup Date: Mon, 17 Aug 2026 15:32:19 +0200 Message-ID: <20260817132534.870581417@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132534.666299318@linuxfoundation.org> References: <20260817132534.666299318@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yuho Choi [ Upstream commit 8eb052f48331474c2789d07b7f11165c323bd2f9 ] npcm7xx_smp_boot_secondary() and npcm7xx_smp_prepare_cpus() look up the GCR and SCU nodes with of_find_compatible_node(). The returned nodes are used for of_iomap(), but the node references are never released. of_iomap() does not consume the device node reference, and iounmap() only releases the MMIO mapping. Drop each node reference after the corresponding mapping attempt. Fixes: 7bffa14c9aed ("arm: npcm: add basic support for Nuvoton BMCs") Signed-off-by: Yuho Choi Reviewed-by: Avi Fishman Signed-off-by: Andrew Jeffery Signed-off-by: Sasha Levin --- arch/arm/mach-npcm/platsmp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-npcm/platsmp.c b/arch/arm/mach-npcm/platsmp.c index 41891d3aa1247..4c1fc9983746c 100644 --- a/arch/arm/mach-npcm/platsmp.c +++ b/arch/arm/mach-npcm/platsmp.c @@ -32,6 +32,7 @@ static int npcm7xx_smp_boot_secondary(unsigned int cpu, goto out; } gcr_base = of_iomap(gcr_np, 0); + of_node_put(gcr_np); if (!gcr_base) { pr_err("could not iomap gcr"); ret = -ENOMEM; @@ -60,6 +61,7 @@ static void __init npcm7xx_smp_prepare_cpus(unsigned int max_cpus) return; } scu_base = of_iomap(scu_np, 0); + of_node_put(scu_np); if (!scu_base) { pr_err("could not iomap scu"); return; -- 2.53.0