diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-01-07 16:42:39 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-01-14 11:31:18 +0300 |
commit | 3b24f4c65386dc0f2efb41027bc6e410ea2c0049 (patch) | |
tree | b1015543f700d19b63f3674f214e20e14e67459d /net/mac80211/tx.c | |
parent | 0efbb786f1a3e13d28861ff41aae8dc4be314608 (diff) | |
download | linux-3b24f4c65386dc0f2efb41027bc6e410ea2c0049.tar.xz |
mac80211: let flush() drop packets when possible
When roaming / suspending, it makes no sense to wait until
the transmit queues of the device are empty. In extreme
condition they can be starved (VO saturating the air), but
even in regular cases, it is pointless to delay the roaming
because the low level driver is trying to send packets to
an AP which is far away. We'd rather drop these packets and
let TCP retransmit if needed. This will allow to speed up
the roaming.
For suspend, the explanation is even more trivial.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index da7f352a2b16..02ed6f60629a 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -3155,7 +3155,7 @@ int ieee80211_reserve_tid(struct ieee80211_sta *pubsta, u8 tid) } queues = BIT(sdata->vif.hw_queue[ieee802_1d_to_ac[tid]]); - __ieee80211_flush_queues(local, sdata, queues); + __ieee80211_flush_queues(local, sdata, queues, false); sta->reserved_tid = tid; |