blob: 059a7906619186aa7f05182725b773495de8e61b [file] [log] [blame]
developerd0c89452024-10-11 16:53:27 +08001From 6bd9e4f92817c054a87abc52b59b20219585aff4 Mon Sep 17 00:00:00 2001
developer05f3b2b2024-08-19 19:17:34 +08002From: Shayne Chen <shayne.chen@mediatek.com>
3Date: Tue, 13 Aug 2024 18:55:00 +0800
developerd0c89452024-10-11 16:53:27 +08004Subject: [PATCH 187/223] 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
developerd0c89452024-10-11 16:53:27 +080012index 9bf43124..d002cf6d 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) &&
21+ (dev->drv->drv_flags & MT_DRV_SW_RX_AIRTIME)) {
22 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