[v2,0/5] NAT64 support in mlx5 PMD

Message ID 20240220141008.292641-1-bingz@nvidia.com (mailing list archive)
Headers
Series NAT64 support in mlx5 PMD |

Message

Bing Zhao Feb. 20, 2024, 2:10 p.m. UTC
  This patch set contains the mlx5 PMD implementation for NAT64.

Update in v2:
  1. separate from the RTE and testpmd common part.
  2. reorder the commits.
  3. bug fix, code polishing and document update.

Bing Zhao (4):
  net/mlx5: fetch the available registers for NAT64
  net/mlx5: create NAT64 actions during configuration
  net/mlx5: add NAT64 action support in rule creation
  net/mlx5: validate the actions combination with NAT64

Erez Shitrit (1):
  net/mlx5/hws: support NAT64 action

 doc/guides/nics/features/mlx5.ini      |   1 +
 doc/guides/nics/mlx5.rst               |  10 +
 doc/guides/rel_notes/release_24_03.rst |   7 +
 drivers/net/mlx5/hws/mlx5dr.h          |  29 ++
 drivers/net/mlx5/hws/mlx5dr_action.c   | 437 ++++++++++++++++++++++++-
 drivers/net/mlx5/hws/mlx5dr_action.h   |  35 ++
 drivers/net/mlx5/hws/mlx5dr_debug.c    |   1 +
 drivers/net/mlx5/mlx5.c                |   9 +
 drivers/net/mlx5/mlx5.h                |   8 +
 drivers/net/mlx5/mlx5_flow.h           |  12 +
 drivers/net/mlx5/mlx5_flow_dv.c        |   4 +-
 drivers/net/mlx5/mlx5_flow_hw.c        | 136 ++++++++
 12 files changed, 687 insertions(+), 2 deletions(-)