Skip to content
Snippets Groups Projects
Commit f54f21c0 authored by Ryder Lee's avatar Ryder Lee Committed by Greg Kroah-Hartman
Browse files

mt76: mt7615: use ieee80211_free_txskb() in mt7615_tx_token_put()


commit 06991d1f upstream.

We should use ieee80211_free_txskb() to report skb status avoid wrong
aql accounting after reset.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarRyder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0035a470
No related branches found
No related tags found
No related merge requests found
...@@ -2106,8 +2106,12 @@ void mt7615_tx_token_put(struct mt7615_dev *dev) ...@@ -2106,8 +2106,12 @@ void mt7615_tx_token_put(struct mt7615_dev *dev)
spin_lock_bh(&dev->token_lock); spin_lock_bh(&dev->token_lock);
idr_for_each_entry(&dev->token, txwi, id) { idr_for_each_entry(&dev->token, txwi, id) {
mt7615_txp_skb_unmap(&dev->mt76, txwi); mt7615_txp_skb_unmap(&dev->mt76, txwi);
if (txwi->skb) if (txwi->skb) {
dev_kfree_skb_any(txwi->skb); struct ieee80211_hw *hw;
hw = mt76_tx_status_get_hw(&dev->mt76, txwi->skb);
ieee80211_free_txskb(hw, txwi->skb);
}
mt76_put_txwi(&dev->mt76, txwi); mt76_put_txwi(&dev->mt76, txwi);
} }
spin_unlock_bh(&dev->token_lock); spin_unlock_bh(&dev->token_lock);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment