All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] enic: Remove redundant free in enic_set_ringparam
@ 2020-12-23 12:38 Dinghao Liu
  2020-12-23 20:37 ` Jakub Kicinski
  0 siblings, 1 reply; 3+ messages in thread
From: Dinghao Liu @ 2020-12-23 12:38 UTC (permalink / raw)
  To: dinghao.liu, kjlu
  Cc: Christian Benvenuti, Govindarajulu Varadarajan, David S. Miller,
	Jakub Kicinski, netdev, linux-kernel

The error handling paths in enic_alloc_vnic_resources()
have called enic_free_vnic_resources() before returning.
So we may not need to call it again on failure at caller
side.

Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
---
 drivers/net/ethernet/cisco/enic/enic_ethtool.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/cisco/enic/enic_ethtool.c b/drivers/net/ethernet/cisco/enic/enic_ethtool.c
index 1a9803f2073e..85a139d39f27 100644
--- a/drivers/net/ethernet/cisco/enic/enic_ethtool.c
+++ b/drivers/net/ethernet/cisco/enic/enic_ethtool.c
@@ -235,7 +235,6 @@ static int enic_set_ringparam(struct net_device *netdev,
 	if (err) {
 		netdev_err(netdev,
 			   "Failed to alloc vNIC resources, aborting\n");
-		enic_free_vnic_resources(enic);
 		goto err_out;
 	}
 	enic_init_vnic_resources(enic);
-- 
2.17.1


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

end of thread, other threads:[~2020-12-24 10:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-23 12:38 [PATCH] enic: Remove redundant free in enic_set_ringparam Dinghao Liu
2020-12-23 20:37 ` Jakub Kicinski
2020-12-24 10:16   ` dinghao.liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.