netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kuniyuki Iwashima <kuniyu@amazon.com>
To: <ruc_gongyuanjun@163.com>
Cc: <chris.snook@gmail.com>, <davem@davemloft.net>,
	<edumazet@google.com>, <kuba@kernel.org>,
	<netdev@vger.kernel.org>, <kuniyu@amazon.com>
Subject: [PATCH 1/1] ethernet: atheros: fix return value check in atl1_tso()
Date: Thu, 20 Jul 2023 15:08:20 -0700	[thread overview]
Message-ID: <20230720220820.40712-1-kuniyu@amazon.com> (raw)
In-Reply-To: <20230720144154.38922-1-ruc_gongyuanjun@163.com>

From: Yuanjun Gong <ruc_gongyuanjun@163.com>
Date: Thu, 20 Jul 2023 22:41:54 +0800
> in atl1_tso, it should check the return value of pskb_trim(),
> and return an error code if an unexpected value is returned
> by pskb_trim().
>

Please add Fixes tag and specify the target tree as net in Subject.

Also, it would be better to post related patches as a single series:

https://lore.kernel.org/netdev/20230720144208.39170-1-ruc_gongyuanjun@163.com/T/#u
https://lore.kernel.org/netdev/20230720144219.39285-1-ruc_gongyuanjun@163.com/T/#u


> Signed-off-by: Yuanjun Gong <ruc_gongyuanjun@163.com>
> ---
>  drivers/net/ethernet/atheros/atlx/atl1.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/atheros/atlx/atl1.c b/drivers/net/ethernet/atheros/atlx/atl1.c
> index c8444bcdf527..02aa6fd8ebc2 100644
> --- a/drivers/net/ethernet/atheros/atlx/atl1.c
> +++ b/drivers/net/ethernet/atheros/atlx/atl1.c
> @@ -2113,8 +2113,11 @@ static int atl1_tso(struct atl1_adapter *adapter, struct sk_buff *skb,
>  
>  			real_len = (((unsigned char *)iph - skb->data) +
>  				ntohs(iph->tot_len));
> -			if (real_len < skb->len)
> -				pskb_trim(skb, real_len);
> +			if (real_len < skb->len) {
> +				err = pskb_trim(skb, real_len);
> +				if (err)
> +					return err;
> +			}
>  			hdr_len = skb_tcp_all_headers(skb);
>  			if (skb->len == hdr_len) {
>  				iph->check = 0;
> -- 
> 2.17.1

  reply	other threads:[~2023-07-20 22:08 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-20 14:41 [PATCH 1/1] ethernet: atheros: fix return value check in atl1_tso() Yuanjun Gong
2023-07-20 22:08 ` Kuniyuki Iwashima [this message]
2023-07-22 14:25   ` [PATCH net v2 1/1] " Yuanjun Gong
2023-07-24 22:50     ` patchwork-bot+netdevbpf

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=20230720220820.40712-1-kuniyu@amazon.com \
    --to=kuniyu@amazon.com \
    --cc=chris.snook@gmail.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=ruc_gongyuanjun@163.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).