Commit cc019545 authored by Maciej Fijalkowski's avatar Maciej Fijalkowski Committed by Tony Nguyen

ice: do not setup vlan for loopback VSI

Currently loopback test is failiing due to the error returned from
ice_vsi_vlan_setup(). Skip calling it when preparing loopback VSI.

Fixes: 0e674aeb ("ice: Add handler for ethtool selftest")
Signed-off-by: default avatarMaciej Fijalkowski <maciej.fijalkowski@intel.com>
Tested-by: default avatarGeorge Kuruvinakunnel <george.kuruvinakunnel@intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent 283d736f
...@@ -6013,10 +6013,12 @@ int ice_vsi_cfg(struct ice_vsi *vsi) ...@@ -6013,10 +6013,12 @@ int ice_vsi_cfg(struct ice_vsi *vsi)
if (vsi->netdev) { if (vsi->netdev) {
ice_set_rx_mode(vsi->netdev); ice_set_rx_mode(vsi->netdev);
err = ice_vsi_vlan_setup(vsi); if (vsi->type != ICE_VSI_LB) {
err = ice_vsi_vlan_setup(vsi);
if (err) if (err)
return err; return err;
}
} }
ice_vsi_cfg_dcb_rings(vsi); ice_vsi_cfg_dcb_rings(vsi);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment