|
@@ -113,7 +113,7 @@ void ieee80211_offchannel_stop_beaconing(struct ieee80211_local *local)
|
|
|
*/
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_STATION &&
|
|
|
sdata->vif.type != NL80211_IFTYPE_MONITOR)
|
|
|
- netif_stop_queue(sdata->dev);
|
|
|
+ netif_tx_stop_all_queues(sdata->dev);
|
|
|
}
|
|
|
mutex_unlock(&local->iflist_mtx);
|
|
|
}
|
|
@@ -131,7 +131,7 @@ void ieee80211_offchannel_stop_station(struct ieee80211_local *local)
|
|
|
continue;
|
|
|
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
|
|
- netif_stop_queue(sdata->dev);
|
|
|
+ netif_tx_stop_all_queues(sdata->dev);
|
|
|
if (sdata->u.mgd.associated)
|
|
|
ieee80211_offchannel_ps_enable(sdata);
|
|
|
}
|
|
@@ -153,7 +153,7 @@ void ieee80211_offchannel_return(struct ieee80211_local *local,
|
|
|
if (sdata->vif.type == NL80211_IFTYPE_STATION) {
|
|
|
if (sdata->u.mgd.associated)
|
|
|
ieee80211_offchannel_ps_disable(sdata);
|
|
|
- netif_wake_queue(sdata->dev);
|
|
|
+ netif_tx_wake_all_queues(sdata->dev);
|
|
|
}
|
|
|
|
|
|
/* re-enable beaconing */
|