blob: d99c18ff854b05206a51d72f402d77869f2c17a5 [file] [log] [blame]
developer05f3b2b2024-08-19 19:17:34 +08001From 3526fd4180ee45d66f634aa3bef3d86e7ab5bc82 Mon Sep 17 00:00:00 2001
2From: Shayne Chen <shayne.chen@mediatek.com>
3Date: Tue, 13 Aug 2024 18:55:00 +0800
4Subject: [PATCH 199/199] mtk: mt76: do not report ACK when TXS is lost
5
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
12index c965f0e3..7712a32e 100644
13--- 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--
262.18.0
27