mbox series

[0/5] net/mlx5: enhanced CQE compression layout

Message ID 20230228164310.807594-1-akozyrev@nvidia.com (mailing list archive)
Headers
Series net/mlx5: enhanced CQE compression layout |

Message

Alexander Kozyrev Feb. 28, 2023, 4:43 p.m. UTC
  Support Enhanced CQE Compression Layout in mlx5 driver
for better latency and SW utilization.

Alexander Kozyrev (5):
  common/mlx5: detect enhanced CQE compression capability
  common/mlx5: add CQE validity iteration count
  net/mlx5: support enhanced CQE compression in Rx burst
  net/mlx5: support enhanced CQE zipping in vector Rx burst
  net/mlx5: enable enhanced CQE compression

 doc/guides/nics/mlx5.rst                 |  14 +-
 doc/guides/rel_notes/release_23_03.rst   |   1 +
 drivers/common/mlx5/mlx5_common.h        |  57 +++++++-
 drivers/common/mlx5/mlx5_common_devx.c   |   4 +-
 drivers/common/mlx5/mlx5_devx_cmds.c     |   3 +
 drivers/common/mlx5/mlx5_devx_cmds.h     |   2 +
 drivers/common/mlx5/mlx5_prm.h           |  42 ++++--
 drivers/net/mlx5/mlx5.c                  |  17 ++-
 drivers/net/mlx5/mlx5.h                  |   1 +
 drivers/net/mlx5/mlx5_devx.c             |   2 +
 drivers/net/mlx5/mlx5_rx.c               | 175 +++++++++++++++--------
 drivers/net/mlx5/mlx5_rx.h               |  13 +-
 drivers/net/mlx5/mlx5_rxq.c              |   5 +-
 drivers/net/mlx5/mlx5_rxtx_vec.c         |  24 +++-
 drivers/net/mlx5/mlx5_rxtx_vec_altivec.h | 108 ++++++++++----
 drivers/net/mlx5/mlx5_rxtx_vec_neon.h    |  91 ++++++++----
 drivers/net/mlx5/mlx5_rxtx_vec_sse.h     |  94 ++++++++----
 17 files changed, 475 insertions(+), 178 deletions(-)
  

Comments

Raslan Darawsheh March 7, 2023, 9:03 a.m. UTC | #1
Hi,

> -----Original Message-----
> From: Alexander Kozyrev <akozyrev@nvidia.com>
> Sent: Tuesday, February 28, 2023 6:43 PM
> To: dev@dpdk.org
> Cc: Raslan Darawsheh <rasland@nvidia.com>; Slava Ovsiienko
> <viacheslavo@nvidia.com>; Matan Azrad <matan@nvidia.com>
> Subject: [PATCH 0/5] net/mlx5: enhanced CQE compression layout
> 
> Support Enhanced CQE Compression Layout in mlx5 driver for better latency
> and SW utilization.
> 
> Alexander Kozyrev (5):
>   common/mlx5: detect enhanced CQE compression capability
>   common/mlx5: add CQE validity iteration count
>   net/mlx5: support enhanced CQE compression in Rx burst
>   net/mlx5: support enhanced CQE zipping in vector Rx burst
>   net/mlx5: enable enhanced CQE compression
> 
>  doc/guides/nics/mlx5.rst                 |  14 +-
>  doc/guides/rel_notes/release_23_03.rst   |   1 +
>  drivers/common/mlx5/mlx5_common.h        |  57 +++++++-
>  drivers/common/mlx5/mlx5_common_devx.c   |   4 +-
>  drivers/common/mlx5/mlx5_devx_cmds.c     |   3 +
>  drivers/common/mlx5/mlx5_devx_cmds.h     |   2 +
>  drivers/common/mlx5/mlx5_prm.h           |  42 ++++--
>  drivers/net/mlx5/mlx5.c                  |  17 ++-
>  drivers/net/mlx5/mlx5.h                  |   1 +
>  drivers/net/mlx5/mlx5_devx.c             |   2 +
>  drivers/net/mlx5/mlx5_rx.c               | 175 +++++++++++++++--------
>  drivers/net/mlx5/mlx5_rx.h               |  13 +-
>  drivers/net/mlx5/mlx5_rxq.c              |   5 +-
>  drivers/net/mlx5/mlx5_rxtx_vec.c         |  24 +++-
>  drivers/net/mlx5/mlx5_rxtx_vec_altivec.h | 108 ++++++++++----
>  drivers/net/mlx5/mlx5_rxtx_vec_neon.h    |  91 ++++++++----
>  drivers/net/mlx5/mlx5_rxtx_vec_sse.h     |  94 ++++++++----
>  17 files changed, 475 insertions(+), 178 deletions(-)
> 
> --
> 2.18.2

Series applied to next-net-mlx,

Kindest regards,
Raslan Darawsheh