> -----Original Message----- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Long Li > Sent: Thursday, October 1, 2020 6:27 AM > To: wangyunjian <wangyunj...@huawei.com>; dev@dpdk.org > Cc: Stephen Hemminger <sthem...@microsoft.com>; KY Srinivasan > <k...@microsoft.com>; Haiyang Zhang <haiya...@microsoft.com>; > jerry.lili...@huawei.com; xudin...@huawei.com; sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/netvsc: fix txq leak in error path > > >Subject: [dpdk-dev] [PATCH] net/netvsc: fix txq leak in error path > > > >From: Yunjian Wang <wangyunj...@huawei.com> > > > >In hn_dev_tx_queue_setup() allocated memory for txq, we should free it > >when error happens, otherwise it will lead to memory leak. > > > >Fixes: cc0251813277 ("net/netvsc: split send buffers from Tx > >descriptors") > >Cc: sta...@dpdk.org > > > >Signed-off-by: Yunjian Wang <wangyunj...@huawei.com> > >--- > > drivers/net/netvsc/hn_rxtx.c | 1 + > > 1 file changed, 1 insertion(+) > > > >diff --git a/drivers/net/netvsc/hn_rxtx.c > >b/drivers/net/netvsc/hn_rxtx.c index 65f1abae5..8c94e7ee3 100644 > >--- a/drivers/net/netvsc/hn_rxtx.c > >+++ b/drivers/net/netvsc/hn_rxtx.c > >@@ -273,6 +273,7 @@ hn_dev_tx_queue_setup(struct rte_eth_dev *dev, > > " (tx_free_thresh=%u port=%u queue=%u)\n", > > nb_desc - 3, > > tx_free_thresh, dev->data->port_id, queue_idx); > >+ rte_free(txq); > > return -EINVAL; > > } > > > >-- > >2.23.0 > > How about checking for tx_free_thresh at the beginning of the function, > before calling txq = rte_zmalloc_socket()? > > This way, you don't' need to call rte_free() on error.
OK, I will fix it in next version. Thanks, Yunjian > > Long