DPDK patches and discussions
 help / color / mirror / Atom feed
From: Dariusz Sosnowski <dsosnowski@nvidia.com>
To: Ori Kam <orika@nvidia.com>,
	"ferruh.yigit@amd.com" <ferruh.yigit@amd.com>,
	 "cristian.dumitrescu@intel.com" <cristian.dumitrescu@intel.com>,
	"andrew.rybchenko@oktetlabs.ru" <andrew.rybchenko@oktetlabs.ru>,
	"stephen@networkplumber.org" <stephen@networkplumber.org>
Cc: "dev@dpdk.org" <dev@dpdk.org>, Raslan Darawsheh <rasland@nvidia.com>
Subject: RE: [PATCH 0/4] introduce encap hash calculation
Date: Wed, 31 Jan 2024 18:30:11 +0000	[thread overview]
Message-ID: <IA1PR12MB83115758A6C99B70F9FA8FADA47C2@IA1PR12MB8311.namprd12.prod.outlook.com> (raw)
In-Reply-To: <20240128093943.4461-1-orika@nvidia.com>

> -----Original Message-----
> From: Ori Kam <orika@nvidia.com>
> Sent: Sunday, January 28, 2024 10:40
> To: Dariusz Sosnowski <dsosnowski@nvidia.com>; ferruh.yigit@amd.com;
> cristian.dumitrescu@intel.com; andrew.rybchenko@oktetlabs.ru;
> stephen@networkplumber.org
> Cc: dev@dpdk.org; Ori Kam <orika@nvidia.com>; Raslan Darawsheh
> <rasland@nvidia.com>
> Subject: [PATCH 0/4] introduce encap hash calculation
> 
> This patch set adds the support for encap hash calculation.
> 
> It is based on RFC:
> https://patchwork.dpdk.org/project/dpdk/patch/20231210083100.7893-
> 1-orika@nvidia.com/
> 
> Hamdan Igbaria (1):
>   net/mlx5/hws: introduce encap entropy hash calculation API
> 
> Ori Kam (3):
>   ethdev: introduce encap hash calculation
>   net/mlx5: add calc encap hash support
>   app/testpmd: add encap hash calculation
> 
>  app/test-pmd/cmdline_flow.c                 | 57 +++++++++++++--
>  app/test-pmd/config.c                       | 30 ++++++++
>  app/test-pmd/testpmd.h                      |  3 +
>  doc/guides/prog_guide/rte_flow.rst          | 22 ++++++
>  doc/guides/rel_notes/release_24_03.rst      |  4 ++
>  doc/guides/testpmd_app_ug/testpmd_funcs.rst | 21 +++++-
>  drivers/common/mlx5/mlx5_prm.h              |  8 ++-
>  drivers/net/mlx5/hws/mlx5dr.h               | 38 ++++++++++
>  drivers/net/mlx5/hws/mlx5dr_cmd.c           | 23 ++++++
>  drivers/net/mlx5/hws/mlx5dr_cmd.h           |  4 ++
>  drivers/net/mlx5/hws/mlx5dr_crc32.c         | 78 +++++++++++++++++++++
>  drivers/net/mlx5/hws/mlx5dr_crc32.h         |  5 ++
>  drivers/net/mlx5/mlx5_flow.c                | 29 ++++++++
>  drivers/net/mlx5/mlx5_flow.h                |  8 +++
>  drivers/net/mlx5/mlx5_flow_hw.c             | 66 +++++++++++++++++
>  lib/ethdev/rte_flow.c                       | 25 +++++++
>  lib/ethdev/rte_flow.h                       | 50 +++++++++++++
>  lib/ethdev/rte_flow_driver.h                |  5 ++
>  lib/ethdev/version.map                      |  1 +
>  19 files changed, 470 insertions(+), 7 deletions(-)
> 
> --
> 2.34.1

Series-Acked-by: Dariusz Sosnowski <dsosnowski@nvidia.com>

Best regards,
Dariusz Sosnowski

  parent reply	other threads:[~2024-01-31 18:30 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-28  9:39 Ori Kam
2024-01-28  9:39 ` [PATCH 1/4] ethdev: " Ori Kam
2024-02-01  8:40   ` Ori Kam
2024-02-06 22:39   ` Thomas Monjalon
2024-02-07  6:56     ` Ori Kam
2024-02-07  9:25       ` Thomas Monjalon
2024-01-28  9:39 ` [PATCH 2/4] net/mlx5/hws: introduce encap entropy hash calculation API Ori Kam
2024-01-28  9:39 ` [PATCH 3/4] net/mlx5: add calc encap hash support Ori Kam
2024-01-28  9:39 ` [PATCH 4/4] app/testpmd: add encap hash calculation Ori Kam
2024-01-31 18:30 ` Dariusz Sosnowski [this message]
2024-02-08  9:09 ` [PATCH v2 1/4] ethdev: introduce " Ori Kam
2024-02-08  9:09   ` [PATCH v2 2/4] net/mlx5/hws: introduce encap entropy hash calculation API Ori Kam
2024-02-08  9:09   ` [PATCH v2 3/4] net/mlx5: add calc encap hash support Ori Kam
2024-02-08  9:09   ` [PATCH v2 4/4] app/testpmd: add encap hash calculation Ori Kam
2024-02-08 17:13   ` [PATCH v2 1/4] ethdev: introduce " Ferruh Yigit
2024-02-11  7:29     ` Ori Kam
2024-02-12 17:05       ` Ferruh Yigit
2024-02-12 18:44         ` Ori Kam
2024-02-12 20:09           ` Ferruh Yigit
2024-02-13  7:05             ` Ori Kam
2024-02-13 13:48 ` [PATCH v3 " Ori Kam
2024-02-13 13:48   ` [PATCH v3 2/4] net/mlx5/hws: introduce encap entropy hash calculation API Ori Kam
2024-02-13 13:48   ` [PATCH v3 3/4] net/mlx5: add calc encap hash support Ori Kam
2024-02-13 13:48   ` [PATCH v3 4/4] app/testpmd: add encap hash calculation Ori Kam
2024-02-13 14:16 ` [PATCH v4 1/4] ethdev: introduce " Ori Kam
2024-02-13 14:16   ` [PATCH v4 2/4] net/mlx5/hws: introduce encap entropy hash calculation API Ori Kam
2024-02-13 14:16   ` [PATCH v4 3/4] net/mlx5: add calc encap hash support Ori Kam
2024-02-13 14:16   ` [PATCH v4 4/4] app/testpmd: add encap hash calculation Ori Kam
2024-02-13 15:45     ` Ferruh Yigit
2024-02-13 15:45   ` [PATCH v4 1/4] ethdev: introduce " Ferruh Yigit
2024-02-13 15:45     ` Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=IA1PR12MB83115758A6C99B70F9FA8FADA47C2@IA1PR12MB8311.namprd12.prod.outlook.com \
    --to=dsosnowski@nvidia.com \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=cristian.dumitrescu@intel.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@amd.com \
    --cc=orika@nvidia.com \
    --cc=rasland@nvidia.com \
    --cc=stephen@networkplumber.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).