From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752301AbdBZO25 (ORCPT ); Sun, 26 Feb 2017 09:28:57 -0500 Received: from mx02-sz.bfs.de ([194.94.69.103]:10889 "EHLO mx02-sz.bfs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752239AbdBZO2v (ORCPT ); Sun, 26 Feb 2017 09:28:51 -0500 Message-ID: <58B2E61C.7020205@bfs.de> Date: Sun, 26 Feb 2017 15:28:44 +0100 From: walter harms Reply-To: wharms@bfs.de User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.1.16) Gecko/20101125 SUSE/3.0.11 Thunderbird/3.0.11 MIME-Version: 1.0 To: Christophe JAILLET CC: robdclark@gmail.com, airlied@linux.ie, architt@codeaurora.org, hali@codeaurora.org, yongjun_wei@trendmicro.com.cn, linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH v2] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()' References: <20170226121057.9717-1-christophe.jaillet@wanadoo.fr> In-Reply-To: <20170226121057.9717-1-christophe.jaillet@wanadoo.fr> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org looks good to me. Reviewed-by: wharms@bfs.de Am 26.02.2017 13:10, schrieb Christophe JAILLET: > If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the > clk already handled. > > With the current implemenatation, we try to do that on the clk that has > triggered the error, which is a no-op and leave msm_host->bus_clks[0] > untouched. > > Count forward in order to fix it and be more future proof. > > Signed-off-by: Christophe JAILLET > --- > v2: change the for loop from a backward to a forward one, to ease reading. > --- > drivers/gpu/drm/msm/dsi/dsi_host.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c b/drivers/gpu/drm/msm/dsi/dsi_host.c > index 1fc07ce24686..e6f56cd8ce08 100644 > --- a/drivers/gpu/drm/msm/dsi/dsi_host.c > +++ b/drivers/gpu/drm/msm/dsi/dsi_host.c > @@ -422,7 +422,7 @@ static int dsi_clk_init(struct msm_dsi_host *msm_host) > static int dsi_bus_clk_enable(struct msm_dsi_host *msm_host) > { > const struct msm_dsi_config *cfg = msm_host->cfg_hnd->cfg; > - int i, ret; > + int i, j, ret; > > DBG("id=%d", msm_host->id); > > @@ -437,8 +437,8 @@ static int dsi_bus_clk_enable(struct msm_dsi_host *msm_host) > > return 0; > err: > - for (; i > 0; i--) > - clk_disable_unprepare(msm_host->bus_clks[i]); > + for (j = 0; j < i; j++) > + clk_disable_unprepare(msm_host->bus_clks[j]); > > return ret; > }