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 4F8DA46426 for ; Fri, 6 Dec 2024 11:21:27 +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=1733484088; cv=none; b=t1rsUOs/7yvHyzxnolMN/VG6BC4ak/q/h0h/uEuo79fUvoXHwOj1zcwe8d8BY07NCAkXOnRdjQysm9tOfGxIO1t/2hlB1bJce7lSFBunfO9Fhzof+wuiOcH4yAr4leUpk29m1zL9at0A1D1eO39p/GxvIpIlPZwByz4l0s+CRyg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733484088; c=relaxed/simple; bh=fS97WpPpNwnWsFxqVlZBqP5MOniZjWfJaR3KgjEedcQ=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=tahByAdEbhXVB9oLSC8aNGTfkEAAV1vK7mguUcH7xgfA3VQX/04eQ/RGEoHXlQUEbGhtDJi+ZPFF9unyHV2SH/aBvkDlD8QLWBA+Gywoi30se5Q6r4lmt/igsPf31ci1o7SGiafnTmlXRNIheqkU6gT+tfrMLIeKg8gfPlRH/oI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1RMU9Aho; 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="1RMU9Aho" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 50707C4CEDF; Fri, 6 Dec 2024 11:21:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733484087; bh=fS97WpPpNwnWsFxqVlZBqP5MOniZjWfJaR3KgjEedcQ=; h=Subject:To:Cc:From:Date:From; b=1RMU9Ahod/8JWdTcMLn5l6EL6VCk6IgwEBrZ+bIRT1HUcAAfC+02NnY9zIUx4an43 z3IQMr+JnF+Ckksg55puv9VrrZIZcCarGG+I7ualGVUfXJmMAgnEbIwP5tUFsK+EZk RHbKR8/AxlF9tBgl8YkGtvIWKw9wzL+kHwj+uudk= 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:21:23 +0100 Message-ID: <2024120623-refract-altitude-40e5@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 '2024120623-refract-altitude-40e5@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)