blob: cb27ea1f096e496f360522ef2671ca09fa41b546 [file] [log] [blame]
developer1f55fcf2024-10-17 14:52:33 +08001From 4efdf548d28d3afbc367e2cbe365107db1869690 Mon Sep 17 00:00:00 2001
2From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Wed, 16 Oct 2024 08:41:49 +0800
4Subject: [PATCH] mtk: mt76: do not report ACK when TXS is lost
developer05f3b2b2024-08-19 19:17:34 +08005
6Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
7---
8 tx.c | 3 ++-
9 1 file changed, 2 insertions(+), 1 deletion(-)
10
11diff --git a/tx.c b/tx.c
developer1f55fcf2024-10-17 14:52:33 +080012index d6054ab6..b3d76692 100644
developer05f3b2b2024-08-19 19:17:34 +080013--- a/tx.c
14+++ b/tx.c
15@@ -100,7 +100,8 @@ __mt76_tx_status_skb_done(struct mt76_dev *dev, struct sk_buff *skb, u8 flags,
16 return;
17
18 /* Tx status can be unreliable. if it fails, mark the frame as ACKed */
19- if (flags & MT_TX_CB_TXS_FAILED) {
20+ if ((flags & MT_TX_CB_TXS_FAILED) &&
developer1f55fcf2024-10-17 14:52:33 +080021+ (dev->drv->drv_flags & MT_DRV_SW_RX_AIRTIME)) { /* Only CE chips do so */
developer05f3b2b2024-08-19 19:17:34 +080022 info->status.rates[0].count = 0;
23 info->status.rates[0].idx = -1;
24 info->flags |= IEEE80211_TX_STAT_ACK;
25--
developerd0c89452024-10-11 16:53:27 +0800262.45.2
developer05f3b2b2024-08-19 19:17:34 +080027