All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leon Romanovsky <leon@kernel.org>
To: Steffen Klassert <steffen.klassert@secunet.com>
Cc: Leon Romanovsky <leonro@nvidia.com>,
	"David S. Miller" <davem@davemloft.net>,
	Eric Dumazet <edumazet@google.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Jakub Kicinski <kuba@kernel.org>,
	netdev@vger.kernel.org, Bharat Bhushan <bbhushan2@marvell.com>
Subject: [PATCH xfrm-next 00/16] mlx5 IPsec packet offload support (Part I)
Date: Fri,  2 Dec 2022 22:10:21 +0200	[thread overview]
Message-ID: <cover.1670011671.git.leonro@nvidia.com> (raw)

From: Leon Romanovsky <leonro@nvidia.com>

Hi,

This series follows previously sent "Extend XFRM core to allow packet
offload configuration" series [1].

It is first part with refactoring to mlx5 allow us natively extend
mlx5 IPsec logic to support both crypto and packet offloads.

Thanks

[1] https://lore.kernel.org/all/cover.1670005543.git.leonro@nvidia.com

Leon Romanovsky (16):
  net/mlx5: Return ready to use ASO WQE
  net/mlx5: Add HW definitions for IPsec packet offload
  net/mlx5e: Advertise IPsec packet offload support
  net/mlx5e: Store replay window in XFRM attributes
  net/mlx5e: Remove extra layers of defines
  net/mlx5e: Create symmetric IPsec RX and TX flow steering structs
  net/mlx5e: Use mlx5 print routines for low level IPsec code
  net/mlx5e: Remove accesses to priv for low level IPsec FS code
  net/mlx5e: Create Advanced Steering Operation object for IPsec
  net/mlx5e: Create hardware IPsec packet offload objects
  net/mlx5e: Move IPsec flow table creation to separate function
  net/mlx5e: Refactor FTE setup code to be more clear
  net/mlx5e: Flatten the IPsec RX add rule path
  net/mlx5e: Make clear what IPsec rx_err does
  net/mlx5e: Group IPsec miss handles into separate struct
  net/mlx5e: Generalize creation of default IPsec miss group and rule

 drivers/net/ethernet/mellanox/mlx5/core/en.h  |   1 +
 .../ethernet/mellanox/mlx5/core/en/tc/meter.c |   1 -
 .../mellanox/mlx5/core/en_accel/ipsec.c       |  50 +-
 .../mellanox/mlx5/core/en_accel/ipsec.h       |  48 +-
 .../mellanox/mlx5/core/en_accel/ipsec_fs.c    | 629 +++++++++---------
 .../mlx5/core/en_accel/ipsec_offload.c        | 107 ++-
 .../net/ethernet/mellanox/mlx5/core/lib/aso.c |   7 +-
 .../net/ethernet/mellanox/mlx5/core/lib/aso.h |   3 +-
 include/linux/mlx5/mlx5_ifc.h                 |  53 +-
 9 files changed, 543 insertions(+), 356 deletions(-)

-- 
2.38.1


             reply	other threads:[~2022-12-02 20:10 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-02 20:10 Leon Romanovsky [this message]
2022-12-02 20:10 ` [PATCH xfrm-next 01/16] net/mlx5: Return ready to use ASO WQE Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 02/16] net/mlx5: Add HW definitions for IPsec packet offload Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 03/16] net/mlx5e: Advertise IPsec packet offload support Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 04/16] net/mlx5e: Store replay window in XFRM attributes Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 05/16] net/mlx5e: Remove extra layers of defines Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 06/16] net/mlx5e: Create symmetric IPsec RX and TX flow steering structs Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 07/16] net/mlx5e: Use mlx5 print routines for low level IPsec code Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 08/16] net/mlx5e: Remove accesses to priv for low level IPsec FS code Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 09/16] net/mlx5e: Create Advanced Steering Operation object for IPsec Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 10/16] net/mlx5e: Create hardware IPsec packet offload objects Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 11/16] net/mlx5e: Move IPsec flow table creation to separate function Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 12/16] net/mlx5e: Refactor FTE setup code to be more clear Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 13/16] net/mlx5e: Flatten the IPsec RX add rule path Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 14/16] net/mlx5e: Make clear what IPsec rx_err does Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 15/16] net/mlx5e: Group IPsec miss handles into separate struct Leon Romanovsky
2022-12-02 20:10 ` [PATCH xfrm-next 16/16] net/mlx5e: Generalize creation of default IPsec miss group and rule Leon Romanovsky
2022-12-08  9:35 ` [PATCH xfrm-next 00/16] mlx5 IPsec packet offload support (Part I) Steffen Klassert

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=cover.1670011671.git.leonro@nvidia.com \
    --to=leon@kernel.org \
    --cc=bbhushan2@marvell.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=kuba@kernel.org \
    --cc=leonro@nvidia.com \
    --cc=netdev@vger.kernel.org \
    --cc=steffen.klassert@secunet.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.