net/ice: fix memory leak when releasing VSI

At the end of the vsi release, we should free the 'rss_lut'
and 'rss_key' for the vsi.

Fixes: 50370662b727 ("net/ice: support device and queue ops")
Cc: stable@dpdk.org

Signed-off-by: Yunjian Wang <wangyunjian@huawei.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
This commit is contained in:
Yunjian Wang 2020-07-28 21:11:12 +08:00 committed by Ferruh Yigit
parent e7cc68c707
commit 5d4a54fd16

View File

@ -2280,9 +2280,10 @@ ice_release_vsi(struct ice_vsi *vsi)
struct ice_hw *hw;
struct ice_vsi_ctx vsi_ctx;
enum ice_status ret;
int error = 0;
if (!vsi)
return 0;
return error;
hw = ICE_VSI_TO_HW(vsi);
@ -2295,12 +2296,13 @@ ice_release_vsi(struct ice_vsi *vsi)
ret = ice_free_vsi(hw, vsi->idx, &vsi_ctx, false, NULL);
if (ret != ICE_SUCCESS) {
PMD_INIT_LOG(ERR, "Failed to free vsi by aq, %u", vsi->vsi_id);
rte_free(vsi);
return -1;
error = -1;
}
rte_free(vsi->rss_lut);
rte_free(vsi->rss_key);
rte_free(vsi);
return 0;
return error;
}
void