net/iavf: fix VF reset
authorYiding Zhou <yidingx.zhou@intel.com>
Mon, 27 Jun 2022 07:22:32 +0000 (15:22 +0800)
committerQi Zhang <qi.z.zhang@intel.com>
Tue, 5 Jul 2022 01:55:32 +0000 (03:55 +0200)
When the VF is in closed state, the vf_reset flag can not be reverted
if the VF is reset asynchronously. This prevents all virtchnl commands
from executing, causing subsequent calls to iavf_dev_reset() to fail.

So the vf_reset flag needs to be reverted even when VF is in closed state.

Fixes: 676d986b4b86 ("net/iavf: fix crash after VF reset failure")
Cc: stable@dpdk.org
Signed-off-by: Yiding Zhou <yidingx.zhou@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/iavf/iavf_ethdev.c

index 7df0bf8..506fcff 100644 (file)
@@ -2702,8 +2702,10 @@ iavf_dev_close(struct rte_eth_dev *dev)
        if (rte_eal_process_type() != RTE_PROC_PRIMARY)
                return 0;
 
-       if (adapter->closed)
-               return 0;
+       if (adapter->closed) {
+               ret = 0;
+               goto out;
+       }
 
        ret = iavf_dev_stop(dev);
        adapter->closed = true;
@@ -2763,6 +2765,7 @@ iavf_dev_close(struct rte_eth_dev *dev)
         * the bus master bit will not be disabled, and this call will have no
         * effect.
         */
+out:
        if (vf->vf_reset && !rte_pci_set_bus_master(pci_dev, true))
                vf->vf_reset = false;