[lvc-project] [PATCH] brcmfmac: Remove unnecessary NULL-check.
Daniil Dulov
D.Dulov at aladdin.ru
Mon Feb 12 10:52:21 MSK 2024
Hello!
Thank you for the review! I'll correct the patch and send the 2nd version today.
Daniil Dulov
-----Original Message-----
From: Arend van Spriel [mailto:arend.vanspriel at broadcom.com]
Sent: Sunday, February 11, 2024 10:27 PM
To: Daniil Dulov <D.Dulov at aladdin.ru>; Kalle Valo <kvalo at codeaurora.org>
Cc: David S. Miller <davem at davemloft.net>; Jakub Kicinski <kuba at kernel.org>; Pieter-Paul Giesberts <pieterpg at broadcom.com>; Franky (Zhenhui) Lin <frankyl at broadcom.com>; John W. Linville <linville at tuxdriver.com>; Kan Yan <kanyan at broadcom.com>; linux-wireless at vger.kernel.org; brcm80211-dev-list.pdl at broadcom.com; SHA-cyfmac-dev-list at infineon.com; netdev at vger.kernel.org; linux-kernel at vger.kernel.org; lvc-project at linuxtesting.org
Subject: Re: [PATCH] brcmfmac: Remove unnecessary NULL-check.
On 2/11/2024 8:25 PM, Arend van Spriel wrote:
> On 2/11/2024 4:05 PM, Daniil Dulov wrote:
>> In this case req will never be NULL, so remove unnecessary check.
>>
>> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Looks good to me, but when do we call things a "fix" and when is
> "improvement" more appropriate.
>
>> Fixes: 71bb244ba2fd ("brcm80211: fmac: add USB support for
>> bcm43235/6/8 chipsets")
> Reviewed-by: Arend van Spriel <arend.vanspriel at broadcom.com>
>> Signed-off-by: Daniil Dulov <d.dulov at aladdin.ru>
>> ---
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
>> b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
>> index 9fb68c2dc7e3..38e4e4f32a39 100644
>> --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
>> +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
>> @@ -455,8 +455,7 @@ brcmf_usbdev_qinit(struct list_head *q, int qsize)
>> brcmf_err("fail!\n");
>> while (!list_empty(q)) {
>> req = list_entry(q->next, struct brcmf_usbreq, list);
>> - if (req)
>> - usb_free_urb(req->urb);
>> + usb_free_urb(req->urb);
>> list_del(q->next);
>> }
>
> Ay you are already touching this code you could consider using
> list_for_each_entry_safe().
That "Ay you are ..." should be "As you are ...".
>> kfree(reqs);
More information about the lvc-project
mailing list