From: Leon Romanovsky <leon@kernel.org>
To: Yuanjun Gong <ruc_gongyuanjun@163.com>
Cc: Saeed Mahameed <saeedm@nvidia.com>,
Boris Pismenny <borisp@nvidia.com>,
netdev@vger.kernel.org
Subject: Re: [PATCH 1/1] drivers:net: fix return value check in mlx5e_ipsec_remove_trailer
Date: Mon, 17 Jul 2023 21:55:33 +0300 [thread overview]
Message-ID: <20230717185533.GA8808@unreal> (raw)
In-Reply-To: <20230717144640.23166-1-ruc_gongyuanjun@163.com>
On Mon, Jul 17, 2023 at 10:46:40PM +0800, Yuanjun Gong wrote:
> mlx5e_ipsec_remove_trailer should return an error code if function
> pskb_trim returns an unexpected value.
>
> Signed-off-by: Yuanjun Gong <ruc_gongyuanjun@163.com>
> ---
> drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
Please add fixes line, change title to be "net/mlx5e: ...." instead of
"drivers:..." and target tree which is "net".
Thanks
>
> diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
> index eab5bc718771..8d995e304869 100644
> --- a/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
> +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
> @@ -58,7 +58,9 @@ static int mlx5e_ipsec_remove_trailer(struct sk_buff *skb, struct xfrm_state *x)
>
> trailer_len = alen + plen + 2;
>
> - pskb_trim(skb, skb->len - trailer_len);
> + ret = pskb_trim(skb, skb->len - trailer_len);
> + if (unlikely(ret))
> + return ret;
> if (skb->protocol == htons(ETH_P_IP)) {
> ipv4hdr->tot_len = htons(ntohs(ipv4hdr->tot_len) - trailer_len);
> ip_send_check(ipv4hdr);
> --
> 2.17.1
>
next prev parent reply other threads:[~2023-07-17 18:55 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-17 14:46 [PATCH 1/1] drivers:net: fix return value check in mlx5e_ipsec_remove_trailer Yuanjun Gong
2023-07-17 18:48 ` Tariq Toukan
2023-07-17 18:55 ` Leon Romanovsky [this message]
2023-07-25 6:56 ` [PATCH net v2 1/1] net/mlx5e: fix return value check in mlx5e_ipsec_remove_trailer() Yuanjun Gong
2023-07-26 11:41 ` Leon Romanovsky
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=20230717185533.GA8808@unreal \
--to=leon@kernel.org \
--cc=borisp@nvidia.com \
--cc=netdev@vger.kernel.org \
--cc=ruc_gongyuanjun@163.com \
--cc=saeedm@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 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.