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 21DBE17E4 for ; Fri, 6 Dec 2024 11:36:15 +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=1733484976; cv=none; b=pDkmGsrWNKxXGrBX12bD7noL8ltJXHVUCv8IHgnSteQzTTPsUcvB3kIIqcp7JwNfEIkXJ1TDHF2Q/wa+T3frZwJtTtSTBmCBNFgGuuEBgtYc/svDvWi+HJE7Jevw9o2SvgeHk+eohUwiaUH4r0e8iq1NQ1byZE9Hl5KYGGV8sFo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733484976; c=relaxed/simple; bh=SYedMcbQEUHjZ1EWzW4Odd3sdLBvH2tDzbbMyFTegjA=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=OtirhVnnNzHVTK6GsIsPbe0p4bUkNSJCbgbCTp5PbSSToOUIvIr4diD0JTu9NNUr6ukdNR8gnKZ5GDLeoDXl5s9IvqEo1cXYyaV2MeAvCtwWjHA0PK9Taxhrghty5RU1yf/n7ZJwjQDdpFoDzm1teTo7iRmFpI2q+xXFKjffGB4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=FWj2LmoC; 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="FWj2LmoC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 374DAC4CED1; Fri, 6 Dec 2024 11:36:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733484975; bh=SYedMcbQEUHjZ1EWzW4Odd3sdLBvH2tDzbbMyFTegjA=; h=Subject:To:Cc:From:Date:From; b=FWj2LmoCmyf4sbo+pG/jN7k1A9AWJKlOwSb+ocUpzjtdeUzKGmaZq/CNCLt0VwNYG v16JYAcVSkIC5QhHP8yQXTpgau5sAUujj8H10EhX3sC4KSV5lMiYIFjTdonKOF0MbY Orwtc3zAaBs+uL1JJ0vjL0covORVahCERQLTvPA0= Subject: FAILED: patch "[PATCH] media: platform: exynos4-is: Fix an OF node reference leak in" failed to apply to 5.15-stable tree To: joe@pf.is.s.u-tokyo.ac.jp,hverkuil@xs4all.nl,krzysztof.kozlowski@linaro.org Cc: From: Date: Fri, 06 Dec 2024 12:36:12 +0100 Message-ID: <2024120612-prone-accent-fb69@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 5.15-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-5.15.y git checkout FETCH_HEAD git cherry-pick -x 8964eb23408243ae0016d1f8473c76f64ff25d20 # git commit -s git send-email --to '' --in-reply-to '2024120612-prone-accent-fb69@gregkh' --subject-prefix 'PATCH 5.15.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 8964eb23408243ae0016d1f8473c76f64ff25d20 Mon Sep 17 00:00:00 2001 From: Joe Hattori Date: Mon, 4 Nov 2024 19:01:19 +0900 Subject: [PATCH] media: platform: exynos4-is: Fix an OF node reference leak in fimc_md_is_isp_available In fimc_md_is_isp_available(), of_get_child_by_name() is called to check if FIMC-IS is available. Current code does not decrement the refcount of the returned device node, which causes an OF node reference leak. Fix it by calling of_node_put() at the end of the variable scope. Signed-off-by: Joe Hattori Fixes: e781bbe3fecf ("[media] exynos4-is: Add fimc-is subdevs registration") Cc: stable@vger.kernel.org Reviewed-by: Krzysztof Kozlowski Signed-off-by: Hans Verkuil [hverkuil: added CC to stable] diff --git a/drivers/media/platform/samsung/exynos4-is/media-dev.h b/drivers/media/platform/samsung/exynos4-is/media-dev.h index 786264cf79dc..a50e58ab7ef7 100644 --- a/drivers/media/platform/samsung/exynos4-is/media-dev.h +++ b/drivers/media/platform/samsung/exynos4-is/media-dev.h @@ -178,8 +178,9 @@ int fimc_md_set_camclk(struct v4l2_subdev *sd, bool on); #ifdef CONFIG_OF static inline bool fimc_md_is_isp_available(struct device_node *node) { - node = of_get_child_by_name(node, FIMC_IS_OF_NODE_NAME); - return node ? of_device_is_available(node) : false; + struct device_node *child __free(device_node) = + of_get_child_by_name(node, FIMC_IS_OF_NODE_NAME); + return child ? of_device_is_available(child) : false; } #else #define fimc_md_is_isp_available(node) (false)