]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: rtw89: pci: correct TX resource checking in low power mode
authorPing-Ke Shih <pkshih@realtek.com>
Wed, 24 Aug 2022 06:33:12 +0000 (14:33 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 21 Oct 2022 10:38:06 +0000 (12:38 +0200)
[ Upstream commit 4a29213cd775cabcbe395229d175903accedbb9d ]

Number of TX resource must be minimum of TX_BD and TX_WD. Only considering
TX_BD could drop TX packets pulled from mac80211 if TX_WD is unavailable.

Fixes: 52edbb9fb78a ("rtw89: ps: access TX/RX rings via another registers in low power mode")
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220824063312.15784-2-pkshih@realtek.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/realtek/rtw89/pci.c

index 8a093e1cb328e63e74f789e09e10f27c707002d4..7bb1b494c5d15d862b2d4359b95c0037b3d82e01 100644 (file)
@@ -926,10 +926,12 @@ u32 __rtw89_pci_check_and_reclaim_tx_resource_noio(struct rtw89_dev *rtwdev,
 {
        struct rtw89_pci *rtwpci = (struct rtw89_pci *)rtwdev->priv;
        struct rtw89_pci_tx_ring *tx_ring = &rtwpci->tx_rings[txch];
+       struct rtw89_pci_tx_wd_ring *wd_ring = &tx_ring->wd_ring;
        u32 cnt;
 
        spin_lock_bh(&rtwpci->trx_lock);
        cnt = rtw89_pci_get_avail_txbd_num(tx_ring);
+       cnt = min(cnt, wd_ring->curr_num);
        spin_unlock_bh(&rtwpci->trx_lock);
 
        return cnt;