aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/offchannel.c
diff options
context:
space:
mode:
authorBenoit Papillault <benoit.papillault@free.fr>2010-01-14 17:20:31 -0500
committerJohn W. Linville <linville@tuxdriver.com>2010-01-15 16:58:28 -0500
commit93895757df4ebe22c98b9128b98ebf8cec972c60 (patch)
tree8603e3147d14ec9b52ba7f75ff1b13c099aed1b7 /net/mac80211/offchannel.c
parentb6b1ac69372da996f40863358df41ca77075b249 (diff)
mac80211: Fixed netif_tx_wake_all_queues in IBSS mode
When ieee80211_offchannel_return is called, it needs to re-enabled TX queues that have been stopped in ieee80211_offchannel_stop_beaconing or ieee80211_offchannel_stop_station. It happens if we are doing a scan with an IBSS interface. In this case, the interface stopped transmitting. Signed-off-by: Benoit Papillault <benoit.papillault@free.fr> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/offchannel.c')
-rw-r--r--net/mac80211/offchannel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/offchannel.c b/net/mac80211/offchannel.c
index 1facfeb1f79..c36b1911987 100644
--- a/net/mac80211/offchannel.c
+++ b/net/mac80211/offchannel.c
@@ -153,9 +153,11 @@ void ieee80211_offchannel_return(struct ieee80211_local *local,
153 if (sdata->vif.type == NL80211_IFTYPE_STATION) { 153 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
154 if (sdata->u.mgd.associated) 154 if (sdata->u.mgd.associated)
155 ieee80211_offchannel_ps_disable(sdata); 155 ieee80211_offchannel_ps_disable(sdata);
156 netif_tx_wake_all_queues(sdata->dev);
157 } 156 }
158 157
158 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
159 netif_tx_wake_all_queues(sdata->dev);
160
159 /* re-enable beaconing */ 161 /* re-enable beaconing */
160 if (enable_beaconing && 162 if (enable_beaconing &&
161 (sdata->vif.type == NL80211_IFTYPE_AP || 163 (sdata->vif.type == NL80211_IFTYPE_AP ||