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:   Fri, 22 Oct 2021 09:35:52 +0300
From:   Laurent Pinchart <laurent.pinchart@...asonboard.com>
To:     Dongliang Mu <mudongliangabcd@...il.com>
Cc:     Vinod Koul <vkoul@...nel.org>,
        Geert Uytterhoeven <geert+renesas@...der.be>,
        Yoshihiro Shimoda <yoshihiro.shimoda.uh@...esas.com>,
        Wolfram Sang <wsa+renesas@...g-engineering.com>,
        Zou Wei <zou_wei@...wei.com>, dmaengine@...r.kernel.org,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH] dmaengine: rcar-dmac: refactor the error handling code
 of rcar_dmac_probe

Hi Dongliang,

Thank you for the patch.

On Wed, Oct 20, 2021 at 10:35:33PM +0800, Dongliang Mu wrote:
> In rcar_dmac_probe, if pm_runtime_resume_and_get fails, it forgets to
> disable runtime PM. And of_dma_controller_free should only be invoked
> after the success of of_dma_controller_register.
> 
> Fix this by refactoring the error handling code.
> 
> Signed-off-by: Dongliang Mu <mudongliangabcd@...il.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@...asonboard.com>

> ---
>  drivers/dma/sh/rcar-dmac.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/dma/sh/rcar-dmac.c b/drivers/dma/sh/rcar-dmac.c
> index 6885b3dcd7a9..5c7716fd6bc5 100644
> --- a/drivers/dma/sh/rcar-dmac.c
> +++ b/drivers/dma/sh/rcar-dmac.c
> @@ -1916,7 +1916,7 @@ static int rcar_dmac_probe(struct platform_device *pdev)
>  	ret = pm_runtime_resume_and_get(&pdev->dev);
>  	if (ret < 0) {
>  		dev_err(&pdev->dev, "runtime PM get sync failed (%d)\n", ret);
> -		return ret;
> +		goto err_pm_disable;
>  	}
>  
>  	ret = rcar_dmac_init(dmac);
> @@ -1924,7 +1924,7 @@ static int rcar_dmac_probe(struct platform_device *pdev)
>  
>  	if (ret) {
>  		dev_err(&pdev->dev, "failed to reset device\n");
> -		goto error;
> +		goto err_pm_disable;
>  	}
>  
>  	/* Initialize engine */
> @@ -1958,14 +1958,14 @@ static int rcar_dmac_probe(struct platform_device *pdev)
>  	for_each_rcar_dmac_chan(i, dmac, chan) {
>  		ret = rcar_dmac_chan_probe(dmac, chan);
>  		if (ret < 0)
> -			goto error;
> +			goto err_pm_disable;
>  	}
>  
>  	/* Register the DMAC as a DMA provider for DT. */
>  	ret = of_dma_controller_register(pdev->dev.of_node, rcar_dmac_of_xlate,
>  					 NULL);
>  	if (ret < 0)
> -		goto error;
> +		goto err_pm_disable;
>  
>  	/*
>  	 * Register the DMA engine device.
> @@ -1974,12 +1974,13 @@ static int rcar_dmac_probe(struct platform_device *pdev)
>  	 */
>  	ret = dma_async_device_register(engine);
>  	if (ret < 0)
> -		goto error;
> +		goto err_dma_free;
>  
>  	return 0;
>  
> -error:
> +err_dma_free:
>  	of_dma_controller_free(pdev->dev.of_node);
> +err_pm_disable:
>  	pm_runtime_disable(&pdev->dev);
>  	return ret;
>  }

-- 
Regards,

Laurent Pinchart

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ