From: Simon Horman <horms@kernel.org>
To: Hangbin Liu <liuhangbin@gmail.com>
Cc: netdev@vger.kernel.org, Jay Vosburgh <j.vosburgh@gmail.com>,
"David S . Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Eric Dumazet <edumazet@google.com>,
Nikolay Aleksandrov <razor@blackwall.org>,
Tariq Toukan <tariqt@nvidia.com>, Jianbo Liu <jianbol@nvidia.com>,
Sabrina Dubroca <sd@queasysnail.net>
Subject: Re: [PATCH net-next 1/2] bonding: Add ESN support to IPSec HW offload
Date: Fri, 16 Aug 2024 17:32:15 +0100 [thread overview]
Message-ID: <20240816163215.GW632411@kernel.org> (raw)
In-Reply-To: <20240816035518.203704-2-liuhangbin@gmail.com>
On Fri, Aug 16, 2024 at 11:55:17AM +0800, Hangbin Liu wrote:
> Currently, users can see that bonding supports IPSec HW offload via ethtool.
> However, this functionality does not work with NICs like Mellanox cards when
> ESN (Extended Sequence Numbers) is enabled, as ESN functions are not yet
> supported. This patch adds ESN support to the bonding IPSec device offload,
> ensuring proper functionality with NICs that support ESN.
>
> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
> ---
> drivers/net/bonding/bond_main.c | 38 +++++++++++++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
>
> diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
> index f9633a6f8571..4e3d7979fe01 100644
> --- a/drivers/net/bonding/bond_main.c
> +++ b/drivers/net/bonding/bond_main.c
> @@ -629,10 +629,48 @@ static bool bond_ipsec_offload_ok(struct sk_buff *skb, struct xfrm_state *xs)
> return err;
> }
>
> +/**
> + * bond_advance_esn_state - ESN support for IPSec HW offload
> + * @xs: pointer to transformer state struct
> + **/
> +static void bond_advance_esn_state(struct xfrm_state *xs)
> +{
> + struct net_device *bond_dev = xs->xso.dev;
> + struct bond_ipsec *ipsec;
Hi Hangbin,
ipsec is unused in this function and should be removed.
Likewise in patch 2/2.
> + struct bonding *bond;
> + struct slave *slave;
> +
> + if (!bond_dev)
> + return;
> +
> + rcu_read_lock();
> + bond = netdev_priv(bond_dev);
> + slave = rcu_dereference(bond->curr_active_slave);
> +
> + if (!slave)
> + goto out;
> +
> + if (!xs->xso.real_dev)
> + goto out;
> +
> + WARN_ON(xs->xso.real_dev != slave->dev);
> +
> + if (!slave->dev->xfrmdev_ops ||
> + !slave->dev->xfrmdev_ops->xdo_dev_state_advance_esn) {
> + slave_warn(bond_dev, slave->dev, "%s: no slave xdo_dev_state_advance_esn\n", __func__);
> + goto out;
> + }
> +
> + slave->dev->xfrmdev_ops->xdo_dev_state_advance_esn(xs);
> +out:
> + rcu_read_unlock();
> +}
...
--
pw-bot: cr
next prev parent reply other threads:[~2024-08-16 16:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-16 3:55 [PATCH net-next 0/2] Bonding: support new xfrm state offload functions Hangbin Liu
2024-08-16 3:55 ` [PATCH net-next 1/2] bonding: Add ESN support to IPSec HW offload Hangbin Liu
2024-08-16 16:32 ` Simon Horman [this message]
2024-08-17 11:36 ` kernel test robot
2024-08-16 3:55 ` [PATCH net-next 2/2] bonding: support xfrm state update Hangbin Liu
2024-08-16 4:01 ` [PATCH net-next 0/2] Bonding: support new xfrm state offload functions Hangbin Liu
2024-08-16 6:00 ` Nikolay Aleksandrov
2024-08-16 8:35 ` Hangbin Liu
2024-08-16 6:06 ` Nikolay Aleksandrov
2024-08-16 8:32 ` Hangbin Liu
2024-08-16 8:37 ` Nikolay Aleksandrov
2024-08-16 9:04 ` Nikolay Aleksandrov
2024-08-16 9:58 ` Nikolay Aleksandrov
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=20240816163215.GW632411@kernel.org \
--to=horms@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=j.vosburgh@gmail.com \
--cc=jianbol@nvidia.com \
--cc=kuba@kernel.org \
--cc=liuhangbin@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=razor@blackwall.org \
--cc=sd@queasysnail.net \
--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;
as well as URLs for NNTP newsgroup(s).