[dpdk-dev] [PATCH v3] net/i40e: fix VF/PF port close

2018-12-09 Thread Zhirun Yan
Port reset will call i40evf_uninit_vf() to release resource. It wants to call i40evf_dev_close() to release resources. Befort this patch, hw->adapter_stopped was used to mark the status about start/stop and close. So it will never call i40evf_dev_close() after stoped the port. This patch added hw-

[dpdk-dev] [PATCH v3] net/i40e: fix VF/PF port close

2018-12-09 Thread Zhirun Yan
Port reset will call i40evf_uninit_vf() to release resource. It wants to call i40evf_dev_close() to release resources. Befort this patch, hw->adapter_stopped was used to mark the status about start/stop and close. So it will never call i40evf_dev_close() after stoped the port. This patch added hw-