mbox series

[net-next,00/11] mlx5 misc patches 2024-08-06

Message ID 20240806125804.2048753-1-tariqt@nvidia.com (mailing list archive)
Headers show
Series mlx5 misc patches 2024-08-06 | expand

Message

Tariq Toukan Aug. 6, 2024, 12:57 p.m. UTC
Hi,

This patchset contains multiple enhancements from the team to the mlx5
core and Eth drivers.

Patch #1 by Chris bumps a defined value to permit more devices doing TC
offloads.

Patch #2 by Jianbo adds an IPsec fast-path optimization to replace the
slow async handling.

Patches #3 and #4 by Jianbo add TC offload support for complicated rules
to overcome firmware limitation.

Patch #5 by Gal unifies the access macro to advertised/supported link
modes.

Patches #6 to #9 by Gal adds extack messages in ethtool ops to replace
prints to the kernel log.

Patch #10 by Cosmin switches to using 'update' verb instead of 'replace'
to better reflect the operation.

Patch #11 by Cosmin exposes an update connection tracking operation to
replace the assumed delete+add implementaiton.

Series generated against:
commit eec9de035410 ("Merge branch 'mlx5-ptm-cross-timestamping-support'")

Regards,
Tariq

Chris Mi (1):
  net/mlx5: E-Switch, Increase max int port number for offload

Cosmin Ratiu (2):
  net/mlx5e: CT: 'update' rules instead of 'replace'
  net/mlx5e: CT: Update connection tracking steering entries

Gal Pressman (5):
  net/mlx5e: Be consistent with bitmap handling of link modes
  net/mlx5e: Use extack in set ringparams callback
  net/mlx5e: Use extack in get coalesce callback
  net/mlx5e: Use extack in set coalesce callback
  net/mlx5e: Use extack in get module eeprom by page callback

Jianbo Liu (3):
  net/mlx5e: Enable remove flow for hard packet limit
  net/mlx5e: TC, Offload rewrite and mirror on tunnel over ovs internal
    port
  net/mlx5e: TC, Offload rewrite and mirror to both internal and
    external dests

 drivers/net/ethernet/mellanox/mlx5/core/en.h  |   6 +-
 .../ethernet/mellanox/mlx5/core/en/tc/ct_fs.h |   2 +
 .../mellanox/mlx5/core/en/tc/ct_fs_dmfs.c     |  21 +++
 .../mellanox/mlx5/core/en/tc/ct_fs_smfs.c     |  26 ++++
 .../ethernet/mellanox/mlx5/core/en/tc_ct.c    |  46 +++----
 .../ethernet/mellanox/mlx5/core/en/tc_priv.h  |   1 +
 .../mlx5/core/en_accel/ipsec_offload.c        |   1 +
 .../ethernet/mellanox/mlx5/core/en_ethtool.c  |  81 +++++++-----
 .../net/ethernet/mellanox/mlx5/core/en_rep.c  |   4 +-
 .../net/ethernet/mellanox/mlx5/core/en_tc.c   | 120 ++++++++++++++++++
 .../net/ethernet/mellanox/mlx5/core/en_tc.h   |   3 +-
 .../mellanox/mlx5/core/eswitch_offloads.c     |   7 +
 .../mellanox/mlx5/core/ipoib/ethtool.c        |   4 +-
 13 files changed, 255 insertions(+), 67 deletions(-)