net/bonding: fix leak on remove

If the bond device was created by vdev mode, the kvlist was not free
when the bond device removed.

Fixes: 8d30fe7fa7 ("bonding: support port hotplug")
Cc: stable@dpdk.org

Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
Signed-off-by: Min Hu (Connor) <humin29@huawei.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
Chengwen Feng 2021-04-22 10:05:02 +08:00 committed by Ferruh Yigit
parent 40cc23b0f0
commit 144dc47399

View File

@ -3467,6 +3467,8 @@ bond_remove(struct rte_vdev_device *dev)
ret = bond_ethdev_stop(eth_dev);
bond_ethdev_close(eth_dev);
}
if (internals->kvlist != NULL)
rte_kvargs_free(internals->kvlist);
rte_eth_dev_release_port(eth_dev);
return ret;