Эх сурвалжийг харах

ath10k: fix Tx status clearing

Too much of tx info was being cleared. This caused
issues in some setups with tx frame status
reporting.

This should fix some cases of stations not being
able to associate to ath10k AP.

Reported-By: Matti Laakso <malaakso@elisanet.fi>
Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Michal Kazior 11 жил өмнө
parent
commit
6d33a9a658

+ 1 - 1
drivers/net/wireless/ath/ath10k/txrx.c

@@ -75,7 +75,7 @@ void ath10k_txrx_tx_unref(struct ath10k_htt *htt,
 	ath10k_report_offchan_tx(htt->ar, msdu);
 	ath10k_report_offchan_tx(htt->ar, msdu);
 
 
 	info = IEEE80211_SKB_CB(msdu);
 	info = IEEE80211_SKB_CB(msdu);
-	memset(info, 0, sizeof(*info));
+	memset(&info->status, 0, sizeof(info->status));
 
 
 	if (tx_done->discard) {
 	if (tx_done->discard) {
 		ieee80211_free_txskb(htt->ar->hw, msdu);
 		ieee80211_free_txskb(htt->ar->hw, msdu);