All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mac80211:  fix time-is-after bug in mlme.
@ 2021-03-30 23:07 greearb
  2021-04-01 16:43 ` Felix Fietkau
  0 siblings, 1 reply; 2+ messages in thread
From: greearb @ 2021-03-30 23:07 UTC (permalink / raw)
  To: linux-wireless, nbd; +Cc: Ben Greear

From: Ben Greear <greearb@candelatech.com>

This fixes commit:  mac80211: optimize station connection monitor
which came in in the 5.10 kernel.

This incorrect timeout check caused probing to happen when it did
not need to happen.  This in turn caused tx performance drop
for around 5 seconds in ath10k-ct driver.  Possibly that tx drop
is due to a secondary issue, but fixing the probe to not happen
when traffic is running fixes the symptom.

Signed-off-by: Ben Greear <greearb@candelatech.com>
---
 net/mac80211/mlme.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index c137a8b5d8e1..b06c76116d86 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -4729,7 +4729,10 @@ static void ieee80211_sta_conn_mon_timer(struct timer_list *t)
 		timeout = sta->rx_stats.last_rx;
 	timeout += IEEE80211_CONNECTION_IDLE_TIME;
 
-	if (time_is_before_jiffies(timeout)) {
+	/* If timeout is after now, then update timer to fire at
+	 * the later date, but do not actually probe at this time.
+	 */
+	if (time_is_after_jiffies(timeout)) {
 		mod_timer(&ifmgd->conn_mon_timer, round_jiffies_up(timeout));
 		return;
 	}
-- 
2.20.1


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

* Re: [PATCH] mac80211: fix time-is-after bug in mlme.
  2021-03-30 23:07 [PATCH] mac80211: fix time-is-after bug in mlme greearb
@ 2021-04-01 16:43 ` Felix Fietkau
  0 siblings, 0 replies; 2+ messages in thread
From: Felix Fietkau @ 2021-04-01 16:43 UTC (permalink / raw)
  To: greearb, linux-wireless


On 2021-03-31 01:07, greearb@candelatech.com wrote:
> From: Ben Greear <greearb@candelatech.com>
> 
> This fixes commit:  mac80211: optimize station connection monitor
> which came in in the 5.10 kernel.
> 
> This incorrect timeout check caused probing to happen when it did
> not need to happen.  This in turn caused tx performance drop
> for around 5 seconds in ath10k-ct driver.  Possibly that tx drop
> is due to a secondary issue, but fixing the probe to not happen
> when traffic is running fixes the symptom.
> 
> Signed-off-by: Ben Greear <greearb@candelatech.com>
Acked-by: Felix Fietkau <nbd@nbd.name>

- Felix

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

end of thread, other threads:[~2021-04-01 17:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-30 23:07 [PATCH] mac80211: fix time-is-after bug in mlme greearb
2021-04-01 16:43 ` Felix Fietkau

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.