Re: [dpdk-dev] [PATCH] net/iavf: fix vf probe resource leak

2021-09-14 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Qiming Chen > Sent: Friday, September 10, 2021 3:49 PM > To: dev@dpdk.org > Cc: Xing, Beilei ; Wu, Jingjing > ; > Qiming Chen ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/iavf: fix vf probe resource leak &g

[dpdk-dev] [PATCH] net/iavf: fix vf probe resource leak

2021-09-10 Thread Qiming Chen
During the port probe process, there are two abnormal branches that did not release the previously requested memory, resulting in leakage. The patch adds an iavf_uninit_vf function, which corresponds to the iavf_init_vf function. Fixes: ff2d0c345c3b ("net/iavf: support generic flow API") Cc: sta..