Re: [PATCH] firmware: stratix10-svc: Fix some error handling paths in 'stratix10_svc_drv_probe()'

From: Markus Elfring
Date: Sun Apr 26 2020 - 15:50:18 EST


> If an error occurs after calling 'kfifo_alloc()', the allocated memory
> should be freed with 'kfifo_free()', as already done in the remove
> function.

I suggest to reconsider software development consequences around
another implementation detail for such exception handling.


â
> +++ b/drivers/firmware/stratix10-svc.c
> @@ -1043,24 +1043,31 @@ static int stratix10_svc_drv_probe(struct platform_device *pdev)
â
> svc = devm_kzalloc(dev, sizeof(*svc), GFP_KERNEL);
â
> + if (!svc) {
> + ret = -ENOMEM;
> + goto err_free_kfifo;
> + }

Would you like to take the possibility into account to avoid
the duplicate specification of this error code assignment
by adding another jump target?

- return -ENOMEM;
+ goto e_nomem;


>+ return 0;
>+

+e_nomem:
+ ret = -ENOMEM;

>+err_free_kfifo:
>+ kfifo_free(&controller->svc_fifo);
> return ret;
> }


By the way:
How do you think about to omit the error message âfailed to allocate FIFOâ
for a failed call of the function âkfifo_allocâ?

Regards,
Markus