The code to unset owner of VF device was changing port to invalid
value before calling unset.
Fixes:
4a9efcddaddd ("net/netvsc: fix VF support with secondary process")
Cc: stable@dpdk.org
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
/* Stop incoming packets from arriving on VF */
hn_nvs_set_datapath(hv, NVS_DATAPATH_SYNTHETIC);
- /* Stop transmission over VF */
- hv->vf_port = HN_INVALID_PORT;
-
/* Give back ownership */
rte_eth_dev_owner_unset(hv->vf_port, hv->owner.id);
+
+ /* Stop transmission over VF */
+ hv->vf_port = HN_INVALID_PORT;
}
}