1. 18 Aug, 2021 10 commits
  2. 17 Aug, 2021 27 commits
  3. 16 Aug, 2021 3 commits
    • Vlad Buslov's avatar
      net/mlx5: Bridge, support LAG · ff9b7521
      Vlad Buslov authored
      Allow adding bond net devices to mlx5 bridge with following changes:
      
      - Modify bridge representor code to obtain uplink represetor that belongs
      to eswitch that is registered for notification. Require representor to be
      in shared FDB mode. If representor is the lag master, then consider its
      port as local, otherwise treat it as peer.
      
      - Use devcom to match on paired eswitch metadata in peer FDB entries. This
      is necessary for shared FDB LAG to function since packets are always
      received on active eswitch instance as opposed to parent eswitch of port.
      
      - Support for deleting peer flows when receiving
      SWITCHDEV_FDB_DEL_TO_BRIDGE notification was implemented in one of previous
      patches in series. Now also implement support for handling
      SWITCHDEV_FDB_ADD_TO_BRIDGE which can be generated on peer by bridge update
      workqueue task in LAG configuration. Refresh the flow 'lastuse' timestamp
      to current jiffies when receiving such notification on eswitch that manages
      the local FDB entry. This allows peer entries to prevent ageing of the FDB.
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarRoi Dayan <roid@nvidia.com>
      Reviewed-by: default avatarMark Bloch <mbloch@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      ff9b7521
    • Vlad Buslov's avatar
      net/mlx5: Bridge, allow merged eswitch connectivity · c358ea17
      Vlad Buslov authored
      Allow connectivity between representors of different eswitch instances that
      are attached to same bridge when merged_eswitch capability is enabled. Add
      ports of peer eswitch to bridge instance and mark them with
      MLX5_ESW_BRIDGE_PORT_FLAG_PEER. Mark FDBs offloaded on peer ports with
      MLX5_ESW_BRIDGE_FLAG_PEER flag. Such FDBs can only be aged out on their
      local eswitch instance, which then sends SWITCHDEV_FDB_DEL_TO_BRIDGE event.
      Listen to the event on mlx5 bridge implementation and delete peer FDBs in
      event handler.
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarRoi Dayan <roid@nvidia.com>
      Reviewed-by: default avatarMark Bloch <mbloch@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      c358ea17
    • Vlad Buslov's avatar
      net/mlx5: Bridge, extract FDB delete notification to function · bf3d56d8
      Vlad Buslov authored
      SWITCHDEV_FDB_DEL_TO_BRIDGE notification is generated in multiple places in
      bridge code. Following patch in series changes the condition for the
      notification. Extract the notification into dedicated helper function
      mlx5_esw_bridge_fdb_del_notify() to only modify it in single place in the
      future changes.
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarRoi Dayan <roid@nvidia.com>
      Reviewed-by: default avatarMark Bloch <mbloch@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      bf3d56d8