Commit 860d2ffa authored by Shradha Shah's avatar Shradha Shah Committed by David S. Miller
Browse files

sfc: Implement dummy disable of VF spoof check for EF10

parent 4392dc69
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -667,6 +667,12 @@ reset_nic:
	return rc ? rc : rc2;
	return rc ? rc : rc2;
}
}


int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf_i,
				   bool spoofchk)
{
	return spoofchk ? -EOPNOTSUPP : 0;
}

int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
				     int link_state)
				     int link_state)
{
{
+2 −5
Original line number Original line Diff line number Diff line
@@ -49,11 +49,8 @@ int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac);
int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
			       u16 vlan, u8 qos);
			       u16 vlan, u8 qos);


static inline int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
						 bool spoofchk)
				   bool spoofchk);
{
	return -EOPNOTSUPP;
}


int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
				 struct ifla_vf_info *ivf);
				 struct ifla_vf_info *ivf);