lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <d664a966f7754e879948039189aba8e8@realtek.com>
Date: Tue, 25 Nov 2025 07:23:57 +0000
From: Ping-Ke Shih <pkshih@...ltek.com>
To: Les Boys <lesboyspp43@...look.com>
CC: "linux-wireless@...r.kernel.org" <linux-wireless@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH v1] realtek/rtlwifi: ensure unicast is reinitialized to
 false in each iteration

Les Boys <lesboyspp43@...look.com> wrote:

Subject should be "[PATCH rtw-next] wifi: rtlwifi: ..."

> 
> Previously, the unicast variable was only initialized once during the function execution. Therefore, if
> unicast was set to true in the (n-1)th iteration, it would affect the nth iteration. This patch resolves
> the issue by reinitializing unicast to false at the start of each iteration.

75 characters per lines.

Does this affect your use actually?

> 
> Signed-off-by: LBLaiSiNanHai <lesboyspp43@...look.com>

Not sure if this is your real name? And, it should be the same as From field.

> ---
>  drivers/net/wireless/realtek/rtlwifi/pci.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/net/wireless/realtek/rtlwifi/pci.c b/drivers/net/wireless/realtek/rtlwifi/pci.c
> index d08046926..fe7140328 100644
> --- a/drivers/net/wireless/realtek/rtlwifi/pci.c
> +++ b/drivers/net/wireless/realtek/rtlwifi/pci.c
> @@ -752,6 +752,8 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
>                         memcpy(IEEE80211_SKB_RXCB(skb), &rx_status,
>                                sizeof(rx_status));
> 
> +      unicast = false;
> +

Indentation is weird.

More, initializer of `unicast` can be removed, and here can be

      if (is_unicast_ether_addr(hdr->addr1)) {
               unicast = true;
               rtlpriv->stats.rxbytesunicast += skb->len;
      } else {
               unicast = false;
      }

(I don't think TODO is still useful for now)

>                         if (is_broadcast_ether_addr(hdr->addr1)) {
>                                 ;/*TODO*/
>                         } else if (is_multicast_ether_addr(hdr->addr1)) {
> --
> 2.44.0

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ