mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Cosmin Ratiu <cratiu@nvidia.com>
To: "andrew+netdev@lunn.ch" <andrew+netdev@lunn.ch>,
	"davem@davemloft.net" <davem@davemloft.net>,
	Tariq Toukan <tariqt@nvidia.com>,
	"sd@queasysnail.net" <sd@queasysnail.net>,
	"pabeni@redhat.com" <pabeni@redhat.com>,
	"netdev@vger.kernel.org" <netdev@vger.kernel.org>,
	"edumazet@google.com" <edumazet@google.com>,
	"kuba@kernel.org" <kuba@kernel.org>
Cc: Boris Pismenny <borisp@nvidia.com>,
	"daniel.zahka@gmail.com" <daniel.zahka@gmail.com>,
	Emeel Hakim <ehakim@nvidia.com>,
	"leon@kernel.org" <leon@kernel.org>,
	Jianbo Liu <jianbol@nvidia.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Rahul Rameshbabu <rrameshbabu@nvidia.com>,
	"linux-rdma@vger.kernel.org" <linux-rdma@vger.kernel.org>,
	Roi Dayan <roid@nvidia.com>, Raed Salem <raeds@nvidia.com>,
	Parav Pandit <parav@nvidia.com>,
	Carolina Jubran <cjubran@nvidia.com>,
	Dragos Tatulea <dtatulea@nvidia.com>,
	Mark Bloch <mbloch@nvidia.com>,
	Lior Nahmanson <liorna@nvidia.com>,
	Saeed Mahameed <saeedm@nvidia.com>,
	"steffen.klassert@secunet.com" <steffen.klassert@secunet.com>,
	Gal Pressman <gal@nvidia.com>
Subject: Re: [PATCH net 0/7] net/mlx5e: Fix offload lifetime, cleanup and exclusion bugs
Date: Wed, 23 Sep 2026 10:47:13 +0000	[thread overview]
Message-ID: <e19f54d36221cc370bdcda1eaabbae9e54f377aa.camel@nvidia.com> (raw)
In-Reply-To: <20260917175433.4090878-1-tariqt@nvidia.com>

On Thu, 2026-09-17 at 20:54 +0300, Tariq Toukan wrote:
> Hi,
> 
> This series by Cosmin fixes several mlx5e offload issues:
> 
> - Block eswitch mode changes before accessing the IPsec context
> during
>   policy and SA creation.
> - Tie TC eswitch and IPsec-blocking references to flow destruction,
>   covering bulk cleanup and flows with outstanding references.
> - Track MACsec hardware-object ownership explicitly and delete
> remaining
>   SecYs during driver cleanup.
> - Serialize TC/IPsec exclusion counters with a dedicated mutex.
> - Prevent SHAMPO from merging PSP packets.
> 
> Regards,
> Tariq
> 
> Cosmin Ratiu (7):
>   net/mlx5e: ipsec: Block eswitch mode changes during policy creation
>   net/mlx5e: ipsec: Block eswitch mode changes before accessing
>     priv->ipsec
>   net/mlx5e: tc: Tie esw & accel blocking refs to the flow's lifetime
>   net/mlx5e: macsec: Track hardware object ownership for SA teardown
>   net/mlx5e: macsec: Delete remaining SecYs during cleanup
>   net/mlx5e: Serialize TC and IPsec offload exclusion counters
>   net/mlx5e: shampo: Do not merge PSP packets
> 
>  .../mellanox/mlx5/core/en_accel/ipsec.c       | 55 +++++++++++-----
>  .../mellanox/mlx5/core/en_accel/ipsec_fs.c    | 47 ++++---------
>  .../mellanox/mlx5/core/en_accel/macsec.c      | 60 +++++++++++------
>  .../net/ethernet/mellanox/mlx5/core/en_rx.c   | 15 ++++-
>  .../net/ethernet/mellanox/mlx5/core/en_tc.c   | 66 ++++++++++++-----
> --
>  .../net/ethernet/mellanox/mlx5/core/eswitch.c | 23 ++-----
>  .../net/ethernet/mellanox/mlx5/core/eswitch.h | 11 ++--
>  .../mellanox/mlx5/core/eswitch_offloads.c     |  7 +-
>  .../net/ethernet/mellanox/mlx5/core/main.c    |  3 +
>  include/linux/mlx5/driver.h                   |  7 +-
>  10 files changed, 172 insertions(+), 122 deletions(-)
> 
> 
> base-commit: c9151088f1674fd29ff26a20f5fc687acf53a2f0

pw-bot: cr

      parent reply	other threads:[~2026-09-23 10:47 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-17 17:54 Tariq Toukan
2026-09-17 17:54 ` [PATCH net 1/7] net/mlx5e: ipsec: Block eswitch mode changes during policy creation Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  7:27     ` Cosmin Ratiu
2026-09-17 17:54 ` [PATCH net 2/7] net/mlx5e: ipsec: Block eswitch mode changes before accessing priv->ipsec Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  7:52     ` Cosmin Ratiu
2026-09-17 17:54 ` [PATCH net 3/7] net/mlx5e: tc: Tie esw & accel blocking refs to the flow's lifetime Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  7:59     ` Cosmin Ratiu
2026-09-17 17:54 ` [PATCH net 4/7] net/mlx5e: macsec: Track hardware object ownership for SA teardown Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  8:32     ` Cosmin Ratiu
2026-09-17 17:54 ` [PATCH net 5/7] net/mlx5e: macsec: Delete remaining SecYs during cleanup Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  8:49     ` Cosmin Ratiu
2026-09-17 17:54 ` [PATCH net 6/7] net/mlx5e: Serialize TC and IPsec offload exclusion counters Tariq Toukan
2026-09-17 17:54 ` [PATCH net 7/7] net/mlx5e: shampo: Do not merge PSP packets Tariq Toukan
2026-09-21 18:49   ` netdev-bot+sashiko
2026-09-23  8:50     ` Cosmin Ratiu
2026-09-22 10:44 ` [PATCH net 0/7] net/mlx5e: Fix offload lifetime, cleanup and exclusion bugs Paolo Abeni
2026-09-23 10:47 ` Cosmin Ratiu [this message]

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=e19f54d36221cc370bdcda1eaabbae9e54f377aa.camel@nvidia.com \
    --to=cratiu@nvidia.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=borisp@nvidia.com \
    --cc=cjubran@nvidia.com \
    --cc=daniel.zahka@gmail.com \
    --cc=davem@davemloft.net \
    --cc=dtatulea@nvidia.com \
    --cc=edumazet@google.com \
    --cc=ehakim@nvidia.com \
    --cc=gal@nvidia.com \
    --cc=jianbol@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=leon@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.org \
    --cc=liorna@nvidia.com \
    --cc=mbloch@nvidia.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=parav@nvidia.com \
    --cc=raeds@nvidia.com \
    --cc=roid@nvidia.com \
    --cc=rrameshbabu@nvidia.com \
    --cc=saeedm@nvidia.com \
    --cc=sd@queasysnail.net \
    --cc=steffen.klassert@secunet.com \
    --cc=tariqt@nvidia.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®