i40e: Do not check VF state in i40e_ndo_get_vf_config
The VF configuration returned in i40e_ndo_get_vf_config is already stored by the PF. There is no dependency on any specific state of the VF to return the configuration. Drop the check against I40E_VF_STATE_INIT since it is not needed. Signed-off-by: Lihong Yang <lihong.yang@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
55426f47d0
commit
745b32c1a3
@@ -4302,10 +4302,8 @@ int i40e_ndo_get_vf_config(struct net_device *netdev,
|
|||||||
vf = &pf->vf[vf_id];
|
vf = &pf->vf[vf_id];
|
||||||
/* first vsi is always the LAN vsi */
|
/* first vsi is always the LAN vsi */
|
||||||
vsi = pf->vsi[vf->lan_vsi_idx];
|
vsi = pf->vsi[vf->lan_vsi_idx];
|
||||||
if (!test_bit(I40E_VF_STATE_INIT, &vf->vf_states)) {
|
if (!vsi) {
|
||||||
dev_err(&pf->pdev->dev, "VF %d still in reset. Try again.\n",
|
ret = -ENOENT;
|
||||||
vf_id);
|
|
||||||
ret = -EAGAIN;
|
|
||||||
goto error_param;
|
goto error_param;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user