summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2018-11-28 16:39:16 -0500
committerJohannes Berg <johannes.berg@intel.com>2018-12-05 06:29:35 -0500
commit9ec1190d065998650fd9260dea8cf3e1f56c0e8c (patch)
treee736f17bc5b82ac7246938bd76c08bcc1bc2b314 /net
parenta317e65face482371de30246b6494feb093ff7f9 (diff)
mac80211: fix reordering of buffered broadcast packets
If the buffered broadcast queue contains packets, letting new packets bypass that queue can lead to heavy reordering, since the driver is probably throttling transmission of buffered multicast packets after beacons. Keep buffering packets until the buffer has been cleared (and no client is in powersave mode). Cc: stable@vger.kernel.org Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/tx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index e0ccee23fbcd..1f536ba573b4 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -439,8 +439,8 @@ ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
439 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL)) 439 if (ieee80211_hw_check(&tx->local->hw, QUEUE_CONTROL))
440 info->hw_queue = tx->sdata->vif.cab_queue; 440 info->hw_queue = tx->sdata->vif.cab_queue;
441 441
442 /* no stations in PS mode */ 442 /* no stations in PS mode and no buffered packets */
443 if (!atomic_read(&ps->num_sta_ps)) 443 if (!atomic_read(&ps->num_sta_ps) && skb_queue_empty(&ps->bc_buf))
444 return TX_CONTINUE; 444 return TX_CONTINUE;
445 445
446 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM; 446 info->flags |= IEEE80211_TX_CTL_SEND_AFTER_DTIM;