lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 20 May 2014 01:23 +0200
From:	"Rafael J. Wysocki" <rjw@...ysocki.net>
To:	Philipp Zabel <p.zabel@...gutronix.de>
Cc:	Viresh Kumar <viresh.kumar@...aro.org>,
	Shawn Guo <shawn.guo@...escale.com>, linux-pm@...r.kernel.org,
	linux-kernel@...r.kernel.org, kernel@...gutronix.de
Subject: Re: [PATCH RESEND 1/2] cpufreq: imx6q: Drop devm_clk/regulator_get usage

On Wednesday, May 14, 2014 06:02:23 PM Philipp Zabel wrote:
> This driver is using devres managed calls incorrectly, giving the cpu0
> device as first parameter instead of the cpufreq platform device.
> This results in resources not being freed if the cpufreq platform device
> is unbound, for example if probing has to be deferred for a missing
> regulator.
> Supporting probe deferral properly is a prerequisite to enabling the
> internal LDO bypass on i.MX6 and regulating the CPU voltage with an
> external regulator.
> 
> Acked-by: Viresh Kumar <viresh.kumar@...aro.org>
> Acked-by: Shawn Guo <shawn.guo@...escale.com>
> Signed-off-by: Philipp Zabel <p.zabel@...gutronix.de>

Both patches queued up for 3.16, thanks!

> ---
> Resent to linux-pm@...r.kernel.org instead of cpufreq@...r.kernel.org.
> ---
>  drivers/cpufreq/imx6q-cpufreq.c | 53 ++++++++++++++++++++++++++++++-----------
>  1 file changed, 39 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c
> index e27fca8..92a82ec 100644
> --- a/drivers/cpufreq/imx6q-cpufreq.c
> +++ b/drivers/cpufreq/imx6q-cpufreq.c
> @@ -170,25 +170,25 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
>  		return -ENOENT;
>  	}
>  
> -	arm_clk = devm_clk_get(cpu_dev, "arm");
> -	pll1_sys_clk = devm_clk_get(cpu_dev, "pll1_sys");
> -	pll1_sw_clk = devm_clk_get(cpu_dev, "pll1_sw");
> -	step_clk = devm_clk_get(cpu_dev, "step");
> -	pll2_pfd2_396m_clk = devm_clk_get(cpu_dev, "pll2_pfd2_396m");
> +	arm_clk = clk_get(cpu_dev, "arm");
> +	pll1_sys_clk = clk_get(cpu_dev, "pll1_sys");
> +	pll1_sw_clk = clk_get(cpu_dev, "pll1_sw");
> +	step_clk = clk_get(cpu_dev, "step");
> +	pll2_pfd2_396m_clk = clk_get(cpu_dev, "pll2_pfd2_396m");
>  	if (IS_ERR(arm_clk) || IS_ERR(pll1_sys_clk) || IS_ERR(pll1_sw_clk) ||
>  	    IS_ERR(step_clk) || IS_ERR(pll2_pfd2_396m_clk)) {
>  		dev_err(cpu_dev, "failed to get clocks\n");
>  		ret = -ENOENT;
> -		goto put_node;
> +		goto put_clk;
>  	}
>  
> -	arm_reg = devm_regulator_get(cpu_dev, "arm");
> -	pu_reg = devm_regulator_get(cpu_dev, "pu");
> -	soc_reg = devm_regulator_get(cpu_dev, "soc");
> +	arm_reg = regulator_get(cpu_dev, "arm");
> +	pu_reg = regulator_get(cpu_dev, "pu");
> +	soc_reg = regulator_get(cpu_dev, "soc");
>  	if (IS_ERR(arm_reg) || IS_ERR(pu_reg) || IS_ERR(soc_reg)) {
>  		dev_err(cpu_dev, "failed to get regulators\n");
>  		ret = -ENOENT;
> -		goto put_node;
> +		goto put_reg;
>  	}
>  
>  	/*
> @@ -201,21 +201,21 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
>  		ret = of_init_opp_table(cpu_dev);
>  		if (ret < 0) {
>  			dev_err(cpu_dev, "failed to init OPP table: %d\n", ret);
> -			goto put_node;
> +			goto put_reg;
>  		}
>  
>  		num = dev_pm_opp_get_opp_count(cpu_dev);
>  		if (num < 0) {
>  			ret = num;
>  			dev_err(cpu_dev, "no OPP table is found: %d\n", ret);
> -			goto put_node;
> +			goto put_reg;
>  		}
>  	}
>  
>  	ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
>  	if (ret) {
>  		dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
> -		goto put_node;
> +		goto put_reg;
>  	}
>  
>  	/* Make imx6_soc_volt array's size same as arm opp number */
> @@ -301,7 +301,24 @@ soc_opp_out:
>  
>  free_freq_table:
>  	dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
> -put_node:
> +put_reg:
> +	if (!IS_ERR(arm_reg))
> +		regulator_put(arm_reg);
> +	if (!IS_ERR(pu_reg))
> +		regulator_put(pu_reg);
> +	if (!IS_ERR(soc_reg))
> +		regulator_put(soc_reg);
> +put_clk:
> +	if (!IS_ERR(arm_clk))
> +		clk_put(arm_clk);
> +	if (!IS_ERR(pll1_sys_clk))
> +		clk_put(pll1_sys_clk);
> +	if (!IS_ERR(pll1_sw_clk))
> +		clk_put(pll1_sw_clk);
> +	if (!IS_ERR(step_clk))
> +		clk_put(step_clk);
> +	if (!IS_ERR(pll2_pfd2_396m_clk))
> +		clk_put(pll2_pfd2_396m_clk);
>  	of_node_put(np);
>  	return ret;
>  }
> @@ -310,6 +327,14 @@ static int imx6q_cpufreq_remove(struct platform_device *pdev)
>  {
>  	cpufreq_unregister_driver(&imx6q_cpufreq_driver);
>  	dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
> +	regulator_put(arm_reg);
> +	regulator_put(pu_reg);
> +	regulator_put(soc_reg);
> +	clk_put(arm_clk);
> +	clk_put(pll1_sys_clk);
> +	clk_put(pll1_sw_clk);
> +	clk_put(step_clk);
> +	clk_put(pll2_pfd2_396m_clk);
>  
>  	return 0;
>  }
> 

-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists