kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] scsi: fcoe: add missed kfree() in an error path
@ 2020-07-07 11:38 Markus Elfring
  2020-07-09  2:11 ` Jing Xiangfeng
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Elfring @ 2020-07-07 11:38 UTC (permalink / raw)
  To: Jing Xiangfeng, linux-scsi
  Cc: kernel-janitors, linux-kernel, Hannes Reinecke,
	James E. J. Bottomley, Martin K. Petersen, Neerav Parikh,
	Robert Love

> fcoe_fdmi_info() misses to call kfree() in an error path.
> Add the missed function call to fix it.

I suggest to use an additional jump target for the completion
of the desired exception handling.


…
> +++ b/drivers/scsi/fcoe/fcoe.c
> @@ -830,6 +830,7 @@ static void fcoe_fdmi_info(struct fc_lport *lport, struct net_device *netdev)
>  		if (rc) {
>  			printk(KERN_INFO "fcoe: Failed to retrieve FDMI "
>  					"information from netdev.\n");
> +			kfree(fdmi);
>  			return;
>  		}

-			return;
+			goto free_fdmi;


How do you think about to apply any further coding style adjustments?

Regards,
Markus

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-07-09 11:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-07 11:38 [PATCH] scsi: fcoe: add missed kfree() in an error path Markus Elfring
2020-07-09  2:11 ` Jing Xiangfeng
2020-07-09  7:22   ` Markus Elfring
2020-07-09 11:08     ` Jing Xiangfeng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).