From: "Jiawen Wu" <jiawenwu@trustnetic.com>
To: "'YueHaibing'" <yuehaibing@huawei.com>,
<mengyuanlou@net-swift.com>, <davem@davemloft.net>,
<edumazet@google.com>, <kuba@kernel.org>, <pabeni@redhat.com>
Cc: <netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH net-next 2/2] net: txgbe: Fix unsigned comparison to zero in txgbe_calc_eeprom_checksum()
Date: Tue, 11 Jul 2023 10:47:56 +0800 [thread overview]
Message-ID: <031801d9b3a2$191cc510$4b564f30$@trustnetic.com> (raw)
In-Reply-To: <20221105080722.20292-3-yuehaibing@huawei.com>
On Saturday, November 5, 2022 4:07 PM, YueHaibing wrote:
> The error checks on checksum for a negative error return always fails because
> it is unsigned and can never be negative.
>
> Fixes: 049fe5365324 ("net: txgbe: Add operations to interact with firmware")
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
> drivers/net/ethernet/wangxun/txgbe/txgbe_hw.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/wangxun/txgbe/txgbe_hw.c b/drivers/net/ethernet/wangxun/txgbe/txgbe_hw.c
> index 9cf5fe33118e..167f7ff73192 100644
> --- a/drivers/net/ethernet/wangxun/txgbe/txgbe_hw.c
> +++ b/drivers/net/ethernet/wangxun/txgbe/txgbe_hw.c
> @@ -200,10 +200,11 @@ static int txgbe_calc_eeprom_checksum(struct txgbe_hw *hw, u16 *checksum)
> if (eeprom_ptrs)
> kvfree(eeprom_ptrs);
>
> - *checksum = TXGBE_EEPROM_SUM - *checksum;
> - if (*checksum < 0)
> + if (*checksum > TXGBE_EEPROM_SUM)
> return -EINVAL;
>
> + *checksum = TXGBE_EEPROM_SUM - *checksum;
> +
> return 0;
> }
It is a pity, I didn't review this patch carefully. *checksum will sometimes
be larger than TXGBE_EEPROM_SUM. It's correct to remove these two lines:
- if (*checksum < 0)
- return -EINVAL;
I'll send a patch to fix it.
next prev parent reply other threads:[~2023-07-11 2:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-05 8:07 [PATCH net-next 0/2] net: txgbe: Fix two bugs in txgbe_calc_eeprom_checksum YueHaibing
2022-11-05 8:07 ` [PATCH net-next 1/2] net: txgbe: Fix memleak in txgbe_calc_eeprom_checksum() YueHaibing
2022-11-05 8:07 ` [PATCH net-next 2/2] net: txgbe: Fix unsigned comparison to zero " YueHaibing
2023-07-11 2:47 ` Jiawen Wu [this message]
2022-11-08 4:10 ` [PATCH net-next 0/2] net: txgbe: Fix two bugs in txgbe_calc_eeprom_checksum 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='031801d9b3a2$191cc510$4b564f30$@trustnetic.com' \
--to=jiawenwu@trustnetic.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mengyuanlou@net-swift.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=yuehaibing@huawei.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