blob: 4d3b674df71e45b6fc7f995b45f3a9b189cfdee3 [file] [log] [blame]
developerc3ea88b2022-09-29 20:21:40 +08001diff --git a/net/mac80211/agg-tx.c b/net/mac80211/agg-tx.c
2index 1deb3d8..c30f02d 100755
3--- a/net/mac80211/agg-tx.c
4+++ b/net/mac80211/agg-tx.c
5@@ -568,10 +568,9 @@ static void sta_tx_agg_session_timer_expired(struct timer_list *t)
6 }
7
8 timeout = tid_tx->last_tx + TU_TO_JIFFIES(tid_tx->timeout);
9- if (time_is_after_jiffies(timeout)) {
10- mod_timer(&tid_tx->session_timer, timeout);
11- return;
12- }
13+ /* remove timerout handle for ax210 iot issue */
14+ mod_timer(&tid_tx->session_timer, timeout);
15+ return;
16
17 ht_dbg(sta->sdata, "tx session timer expired on %pM tid %d\n",
18 sta->sta.addr, tid);
19--
202.18.0