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:   Wed, 9 Jun 2021 00:46:24 +0200
From:   Alexandre Belloni <alexandre.belloni@...tlin.com>
To:     zpershuai <zpershuai@...il.com>
Cc:     Radu Pirea <radu_nicolae.pirea@....ro>,
        Mark Brown <broonie@...nel.org>,
        Nicolas Ferre <nicolas.ferre@...rochip.com>,
        Ludovic Desroches <ludovic.desroches@...rochip.com>,
        linux-spi@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH] spi: spi-at91-usart: Fix wrong goto jump label when
 spi_alloc_master() returns error.

On 08/06/2021 23:14:07+0800, zpershuai wrote:
> When spi_alloc_master() returns null pointer, it’s no need to use
> spi_master_put() to release the memory, although spi_master_put()
> function has null pointer checks.
> 
> Signed-off-by: zpershuai <zpershuai@...il.com>
> ---
>  drivers/spi/spi-at91-usart.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/spi/spi-at91-usart.c b/drivers/spi/spi-at91-usart.c
> index 8c83526..c8136dc 100644
> --- a/drivers/spi/spi-at91-usart.c
> +++ b/drivers/spi/spi-at91-usart.c
> @@ -533,8 +533,10 @@ static int at91_usart_spi_probe(struct platform_device *pdev)
>  
>  	ret = -ENOMEM;
>  	controller = spi_alloc_master(&pdev->dev, sizeof(*aus));
> -	if (!controller)
> -		goto at91_usart_spi_probe_fail;
> +	if (!controller) {
> +		dev_err(&pdev->dev, "Error allocating SPI controller\n");
> +		return -ENOMEM;
> +	}

size before this patch:
   text	   data	    bss	    dec	    hex	filename
   3659	    112	      0	   3771	    ebb	drivers/spi/spi-at91-usart.o

size after:
   text	   data	    bss	    dec	    hex	filename
   3671	    112	      0	   3783	    ec7	drivers/spi/spi-at91-usart.o

Please avoid adding useless error strings in the kernel. This will never
fail and if for some reason this fails an error message would already be
printed anyway.

Strings take space on the storage, increase boot time and RAM usage.

-- 
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ