V4L/DVB: Fix unlock logic at medusa_video_init
[linux-2.6.git] / net / mac80211 / pm.c
blob0e64484e861c74ad145cea45e22ce480c5b51ff4
1 #include <net/mac80211.h>
2 #include <net/rtnetlink.h>
4 #include "ieee80211_i.h"
5 #include "mesh.h"
6 #include "driver-ops.h"
7 #include "led.h"
9 int __ieee80211_suspend(struct ieee80211_hw *hw)
11 struct ieee80211_local *local = hw_to_local(hw);
12 struct ieee80211_sub_if_data *sdata;
13 struct sta_info *sta;
15 ieee80211_scan_cancel(local);
17 ieee80211_stop_queues_by_reason(hw,
18 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
20 /* flush out all packets */
21 synchronize_net();
23 local->quiescing = true;
24 /* make quiescing visible to timers everywhere */
25 mb();
27 flush_workqueue(local->workqueue);
29 /* Don't try to run timers while suspended. */
30 del_timer_sync(&local->sta_cleanup);
33 * Note that this particular timer doesn't need to be
34 * restarted at resume.
36 cancel_work_sync(&local->dynamic_ps_enable_work);
37 del_timer_sync(&local->dynamic_ps_timer);
39 /* disable keys */
40 list_for_each_entry(sdata, &local->interfaces, list)
41 ieee80211_disable_keys(sdata);
43 /* Tear down aggregation sessions */
45 rcu_read_lock();
47 if (hw->flags & IEEE80211_HW_AMPDU_AGGREGATION) {
48 list_for_each_entry_rcu(sta, &local->sta_list, list) {
49 set_sta_flags(sta, WLAN_STA_SUSPEND);
50 ieee80211_sta_tear_down_BA_sessions(sta);
54 rcu_read_unlock();
56 /* remove STAs */
57 mutex_lock(&local->sta_mtx);
58 list_for_each_entry(sta, &local->sta_list, list) {
59 if (sta->uploaded) {
60 sdata = sta->sdata;
61 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
62 sdata = container_of(sdata->bss,
63 struct ieee80211_sub_if_data,
64 u.ap);
66 drv_sta_remove(local, sdata, &sta->sta);
69 mesh_plink_quiesce(sta);
71 mutex_unlock(&local->sta_mtx);
73 /* remove all interfaces */
74 list_for_each_entry(sdata, &local->interfaces, list) {
75 switch(sdata->vif.type) {
76 case NL80211_IFTYPE_STATION:
77 ieee80211_sta_quiesce(sdata);
78 break;
79 case NL80211_IFTYPE_ADHOC:
80 ieee80211_ibss_quiesce(sdata);
81 break;
82 case NL80211_IFTYPE_MESH_POINT:
83 ieee80211_mesh_quiesce(sdata);
84 break;
85 case NL80211_IFTYPE_AP_VLAN:
86 case NL80211_IFTYPE_MONITOR:
87 /* don't tell driver about this */
88 continue;
89 default:
90 break;
93 if (!ieee80211_sdata_running(sdata))
94 continue;
96 /* disable beaconing */
97 ieee80211_bss_info_change_notify(sdata,
98 BSS_CHANGED_BEACON_ENABLED);
100 drv_remove_interface(local, &sdata->vif);
103 /* stop hardware - this must stop RX */
104 if (local->open_count)
105 ieee80211_stop_device(local);
107 local->suspended = true;
108 /* need suspended to be visible before quiescing is false */
109 barrier();
110 local->quiescing = false;
112 return 0;
116 * __ieee80211_resume() is a static inline which just calls
117 * ieee80211_reconfig(), which is also needed for hardware
118 * hang/firmware failure/etc. recovery.