Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753742AbbGVWDS (ORCPT ); Wed, 22 Jul 2015 18:03:18 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:38475 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752363AbbGVWDN (ORCPT ); Wed, 22 Jul 2015 18:03:13 -0400 Message-ID: <55B0131F.80404@codeaurora.org> Date: Wed, 22 Jul 2015 15:03:11 -0700 From: Stephen Boyd User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: Vaibhav Hiremath CC: Krzysztof Kozlowski , linux-arm-kernel@lists.infradead.org, robh+dt@kernel.org, mturquette@baylibre.com, lee.jones@linaro.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org Subject: Re: [PATCH 3/4] clk: 88pm800: Add clk provider driver for 88pm800 family of devices References: <1437476823-3358-1-git-send-email-vaibhav.hiremath@linaro.org> <1437476823-3358-4-git-send-email-vaibhav.hiremath@linaro.org> <55AE990E.2040004@codeaurora.org> <55AE9F48.20600@linaro.org> <55AEB103.9010205@codeaurora.org> <55AF37D9.3000006@linaro.org> <55AF3C2E.7010205@samsung.com> <55AF5175.2010701@linaro.org> In-Reply-To: <55AF5175.2010701@linaro.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1607 Lines: 45 On 07/22/2015 01:16 AM, Vaibhav Hiremath wrote: > > > On Wednesday 22 July 2015 12:16 PM, Krzysztof Kozlowski wrote: >> >> I am really busy now so I am not following closely other discussions. I >> assume you are referring to clk-s2mps11.c. The of_node_put() matches >> of_get_child_by_name() when parsing DT. >> >> So why not of_node_put() just after parsing DT? Well, the result of >> of_get_child_by_name() is stored in state container for entire device >> life-cycle so we can use it in of_clk_del_provider(). >> >> That was the idea behind it. If it looks incorrect I would be happy to >> see a patch :) . >> > > About to respond, I digged more on kobject stuff and sequence in > of/dynamic.c and > > I think you are right, we need of_node_put, as a result of > of_get_child_by_name(). > > Stephen, > Please let me know if you think otherwise. > Yes, sounds fine. I was thinking that we grab the reference to the node in of_clk_add_provider() so dropping it here was to undo that, but that isn't true. It probably can be dropped after we register the provider because adding the provider will keep it pinned, but this way is more symmetric so it's fine. Either way, the error path on probe doesn't call of_node_put(), so that's a leak. -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/