linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211: Enable power save after receiving NULL packet ACK
@ 2021-02-27  5:58 Bassem Dawood
  2021-04-08 13:26 ` Johannes Berg
  0 siblings, 1 reply; 4+ messages in thread
From: Bassem Dawood @ 2021-02-27  5:58 UTC (permalink / raw)
  To: johannes, linux-wireless; +Cc: Bassem Dawood

Trigger dynamic_ps_timer to re-evaluate power saving once a null function
packet (with PM = 1) is ACKed.

Signed-off-by: Bassem Dawood <bassem@morsemicro.com>
---
 net/mac80211/status.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net/mac80211/status.c b/net/mac80211/status.c
index 3485610755ef..c106f81478df 100644
--- a/net/mac80211/status.c
+++ b/net/mac80211/status.c
@@ -1013,9 +1013,9 @@ static void __ieee80211_tx_status(struct ieee80211_hw *hw,
 		if (info->flags & IEEE80211_TX_STAT_ACK) {
 			local->ps_sdata->u.mgd.flags |=
 					IEEE80211_STA_NULLFUNC_ACKED;
-		} else
-			mod_timer(&local->dynamic_ps_timer, jiffies +
-					msecs_to_jiffies(10));
+		}
+		mod_timer(&local->dynamic_ps_timer, jiffies +
+				msecs_to_jiffies(10));
 	}
 
 	ieee80211_report_used_skb(local, skb, false);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-04-20  4:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-27  5:58 [PATCH] mac80211: Enable power save after receiving NULL packet ACK Bassem Dawood
2021-04-08 13:26 ` Johannes Berg
2021-04-09  1:32   ` Bassem Dawood
2021-04-20  4:58     ` Bassem Dawood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).