ice: Unset src prune on uplink VSI
authorWojciech Drewek <wojciech.drewek@intel.com>
Wed, 12 Jul 2023 11:03:30 +0000 (13:03 +0200)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Mon, 24 Jul 2023 15:52:56 +0000 (08:52 -0700)
In switchdev mode uplink VSI is supposed to receive all packets that
were not matched by existing filters. If ICE_AQ_VSI_SW_FLAG_LOCAL_LB
bit is unset and we have a filter associated with uplink VSI
which matches on dst mac equal to MAC1, then packets with src mac equal
to MAC1 will be pruned from reaching uplink VSI.

Fix this by updating uplink VSI with ICE_AQ_VSI_SW_FLAG_LOCAL_LB bit
set when configuring switchdev mode.

Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Wojciech Drewek <wojciech.drewek@intel.com>
Tested-by: Sujai Buvaneswaran <sujai.buvaneswaran@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/ice_eswitch.c
drivers/net/ethernet/intel/ice/ice_lib.c
drivers/net/ethernet/intel/ice/ice_lib.h

index bfd003135fc8e1b0a0ae9e26a0f0ba07601085d4..4fe235da1182f1ac630da5891de299ea11b11f3c 100644 (file)
@@ -113,8 +113,13 @@ static int ice_eswitch_setup_env(struct ice_pf *pf)
        if (ice_vsi_update_security(ctrl_vsi, ice_vsi_ctx_set_allow_override))
                goto err_override_control;
 
+       if (ice_vsi_update_local_lb(uplink_vsi, true))
+               goto err_override_local_lb;
+
        return 0;
 
+err_override_local_lb:
+       ice_vsi_update_security(ctrl_vsi, ice_vsi_ctx_clear_allow_override);
 err_override_control:
        ice_vsi_update_security(uplink_vsi, ice_vsi_ctx_clear_allow_override);
 err_override_uplink:
@@ -391,6 +396,7 @@ static void ice_eswitch_release_env(struct ice_pf *pf)
 
        vlan_ops = ice_get_compat_vsi_vlan_ops(uplink_vsi);
 
+       ice_vsi_update_local_lb(uplink_vsi, false);
        ice_vsi_update_security(ctrl_vsi, ice_vsi_ctx_clear_allow_override);
        ice_vsi_update_security(uplink_vsi, ice_vsi_ctx_clear_allow_override);
        vlan_ops->ena_rx_filtering(uplink_vsi);
index 0054d7e64ec3159db034f4a12aa0c263d2c4947e..a43c23c80565b7b4c0269783e1e1a02279fff04b 100644 (file)
@@ -4076,3 +4076,28 @@ void ice_vsi_ctx_clear_allow_override(struct ice_vsi_ctx *ctx)
 {
        ctx->info.sec_flags &= ~ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
 }
+
+/**
+ * ice_vsi_update_local_lb - update sw block in VSI with local loopback bit
+ * @vsi: pointer to VSI structure
+ * @set: set or unset the bit
+ */
+int
+ice_vsi_update_local_lb(struct ice_vsi *vsi, bool set)
+{
+       struct ice_vsi_ctx ctx = {
+               .info   = vsi->info,
+       };
+
+       ctx.info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_SW_VALID);
+       if (set)
+               ctx.info.sw_flags |= ICE_AQ_VSI_SW_FLAG_LOCAL_LB;
+       else
+               ctx.info.sw_flags &= ~ICE_AQ_VSI_SW_FLAG_LOCAL_LB;
+
+       if (ice_update_vsi(&vsi->back->hw, vsi->idx, &ctx, NULL))
+               return -ENODEV;
+
+       vsi->info = ctx.info;
+       return 0;
+}
index e985766e6bb5fcedb0c6edd2beda7623996c97a4..1628385a967264b020fd97aa9eb15cb380c71cc7 100644 (file)
@@ -157,6 +157,7 @@ void ice_vsi_ctx_clear_antispoof(struct ice_vsi_ctx *ctx);
 void ice_vsi_ctx_set_allow_override(struct ice_vsi_ctx *ctx);
 
 void ice_vsi_ctx_clear_allow_override(struct ice_vsi_ctx *ctx);
+int ice_vsi_update_local_lb(struct ice_vsi *vsi, bool set);
 int ice_vsi_add_vlan_zero(struct ice_vsi *vsi);
 int ice_vsi_del_vlan_zero(struct ice_vsi *vsi);
 bool ice_vsi_has_non_zero_vlans(struct ice_vsi *vsi);