From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Rakuram Eswaran <rakuram.e96@gmail.com>
Cc: Felix Fietkau <nbd@nbd.name>, Ryder Lee <ryder.lee@mediatek.com>,
Shayne Chen <shayne.chen@mediatek.com>,
Sean Wang <sean.wang@mediatek.com>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Rex Lu <rex.lu@mediatek.com>,
linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, david.hunter.linux@gmail.com,
khalid@kernel.org, skhan@linuxfoundation.org,
linux-kernel-mentees@lists.linux.dev,
kernel test robot <lkp@intel.com>,
Dan Carpenter <dan.carpenter@linaro.org>
Subject: Re: [PATCH] wifi: mt76: mt7996: remove redundant NULL check in mt7996_msdu_page_get_from_cache()
Date: Thu, 23 Oct 2025 15:15:54 +0200 [thread overview]
Message-ID: <aPoqiioo6kUZ0kbY@lore-desk> (raw)
In-Reply-To: <20251023-mt7996_mac_c-v1-1-580a3cbb2678@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2009 bytes --]
> Smatch reported a warning that the NULL check on `p` in
> `mt7996_msdu_page_get_from_cache()` is redundant:
>
> drivers/net/wireless/mediatek/mt76/mt7996/mac.c:1651
> mt7996_msdu_page_get_from_cache() warn: can 'p' even be NULL?
>
> The function first checks `list_empty(&dev->wed_rro.page_cache)` before
> calling `list_first_entry()`. When the list is not empty,
> `list_first_entry()` always returns a valid pointer and can never be NULL.
>
> Hence, the `if (p)` condition is unnecessary. Removing it cleans up the
> code.
Hi Rakuram,
this issue has been already fixed here:
https://patchwork.kernel.org/project/linux-wireless/patch/20251014-mt7996_msdu_page_get_from_cache-remove-null-ptr-check-v1-1-fbeb7881e192@kernel.org/
Regards,
Lorenzo
>
> Reported-by: kernel test robot <lkp@intel.com>
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Closes: https://lore.kernel.org/r/202510100155.MS0IXhzm-lkp@intel.com/
> Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
> ---
> drivers/net/wireless/mediatek/mt76/mt7996/mac.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/mediatek/mt76/mt7996/mac.c b/drivers/net/wireless/mediatek/mt76/mt7996/mac.c
> index 9501def3e0e3e20132fdbcfe0b1f489694afdc5f..284f2eea71e5bf0a34c7fe84084d998164a31a05 100644
> --- a/drivers/net/wireless/mediatek/mt76/mt7996/mac.c
> +++ b/drivers/net/wireless/mediatek/mt76/mt7996/mac.c
> @@ -1681,8 +1681,7 @@ mt7996_msdu_page_get_from_cache(struct mt7996_dev *dev)
> if (!list_empty(&dev->wed_rro.page_cache)) {
> p = list_first_entry(&dev->wed_rro.page_cache,
> struct mt7996_msdu_page, list);
> - if (p)
> - list_del(&p->list);
> + list_del(&p->list);
> }
>
> spin_unlock(&dev->wed_rro.lock);
>
> ---
> base-commit: 211ddde0823f1442e4ad052a2f30f050145ccada
> change-id: 20251022-mt7996_mac_c-e10894b8bbb4
>
> Best regards,
> --
> Rakuram Eswaran <rakuram.e96@gmail.com>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-10-23 13:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-23 13:04 [PATCH] wifi: mt76: mt7996: remove redundant NULL check in mt7996_msdu_page_get_from_cache() Rakuram Eswaran
2025-10-23 13:15 ` Lorenzo Bianconi [this message]
2025-10-23 14:24 ` Rakuram Eswaran
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=aPoqiioo6kUZ0kbY@lore-desk \
--to=lorenzo@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=dan.carpenter@linaro.org \
--cc=david.hunter.linux@gmail.com \
--cc=khalid@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel-mentees@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=lkp@intel.com \
--cc=matthias.bgg@gmail.com \
--cc=nbd@nbd.name \
--cc=rakuram.e96@gmail.com \
--cc=rex.lu@mediatek.com \
--cc=ryder.lee@mediatek.com \
--cc=sean.wang@mediatek.com \
--cc=shayne.chen@mediatek.com \
--cc=skhan@linuxfoundation.org \
/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