Skip to content

Commit 2027e3b

Browse files
committed
Merge tag 'ath-current-20251110' of git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath
Jeff Johnson says: ================== ath.git update for v6.18-rc6 Fix an ath11k transmit status reporting issue. This issue has always been present, but not reported until recently. Bringing this through the current release since there is now a userspace entity that wants to leverage this. ================== Signed-off-by: Johannes Berg <johannes.berg@intel.com>
2 parents a9da90e + 9065b96 commit 2027e3b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

  • drivers/net/wireless/ath/ath11k

drivers/net/wireless/ath/ath11k/wmi.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5961,6 +5961,9 @@ static int wmi_process_mgmt_tx_comp(struct ath11k *ar,
59615961
dma_unmap_single(ar->ab->dev, skb_cb->paddr, msdu->len, DMA_TO_DEVICE);
59625962

59635963
info = IEEE80211_SKB_CB(msdu);
5964+
memset(&info->status, 0, sizeof(info->status));
5965+
info->status.rates[0].idx = -1;
5966+
59645967
if ((!(info->flags & IEEE80211_TX_CTL_NO_ACK)) &&
59655968
!tx_compl_param->status) {
59665969
info->flags |= IEEE80211_TX_STAT_ACK;

0 commit comments

Comments
 (0)