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] [thread-next>] [day] [month] [year] [list]
Date:   Tue, 4 Jul 2017 15:52:36 +0530
From:   Kishon Vijay Abraham I <kishon@...com>
To:     <linux-kernel@...r.kernel.org>, "arnd@...db.de" <arnd@...db.de>,
        Tony Lindgren <tony@...mide.com>
CC:     <nsekhar@...com>
Subject: Re: [PATCH] bus: omap-ocp2scp: Fix error handling in
 omap_ocp2scp_probe

+Tony, Arnd,

Hi,

On Friday 19 May 2017 02:16 PM, Kishon Vijay Abraham I wrote:
> The error handling code in omap_ocp2scp_probe fails to invoke
> pm_runtime_disable and fails to initialize return value in
> certain cases. Fix it here.

Can this patch be picked into arm-soc tree?

Thanks
Kishon
> 
> Signed-off-by: Kishon Vijay Abraham I <kishon@...com>
> Signed-off-by: Sekhar Nori <nsekhar@...com>
> ---
>  drivers/bus/omap-ocp2scp.c | 9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/bus/omap-ocp2scp.c b/drivers/bus/omap-ocp2scp.c
> index bf500e0e7362..77791f3dcfc6 100644
> --- a/drivers/bus/omap-ocp2scp.c
> +++ b/drivers/bus/omap-ocp2scp.c
> @@ -70,8 +70,10 @@ static int omap_ocp2scp_probe(struct platform_device *pdev)
>  	if (!of_device_is_compatible(np, "ti,am437x-ocp2scp")) {
>  		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>  		regs = devm_ioremap_resource(&pdev->dev, res);
> -		if (IS_ERR(regs))
> -			goto err0;
> +		if (IS_ERR(regs)) {
> +			ret = PTR_ERR(regs);
> +			goto err1;
> +		}
>  
>  		pm_runtime_get_sync(&pdev->dev);
>  		reg = readl_relaxed(regs + OCP2SCP_TIMING);
> @@ -83,6 +85,9 @@ static int omap_ocp2scp_probe(struct platform_device *pdev)
>  
>  	return 0;
>  
> +err1:
> +	pm_runtime_disable(&pdev->dev);
> +
>  err0:
>  	device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices);
>  
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ