mac80211: always allow calling ieee80211_connection_loss()

With multi-channel, there's a corner case where a driver
doesn't receive a beacon soon enough to be able to sync
its timers with the AP. In this case, the only recovery
(after trying again) is to disconnect from the AP. Allow
calling ieee80211_connection_loss() for such cases. To
make that possible, modify the work function to not rely
on the IEEE80211_HW_CONNECTION_MONITOR flag but use new
state kept in the interface instead.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Johannes Berg 2013-01-29 13:13:50 +01:00
Родитель eef9e54ce8
Коммит 682bd38b8a
3 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -3877,6 +3877,8 @@ void ieee80211_beacon_loss(struct ieee80211_vif *vif);
* When beacon filtering is enabled with %IEEE80211_VIF_BEACON_FILTER, and * When beacon filtering is enabled with %IEEE80211_VIF_BEACON_FILTER, and
* %IEEE80211_CONF_PS and %IEEE80211_HW_CONNECTION_MONITOR are set, the driver * %IEEE80211_CONF_PS and %IEEE80211_HW_CONNECTION_MONITOR are set, the driver
* needs to inform if the connection to the AP has been lost. * needs to inform if the connection to the AP has been lost.
* The function may also be called if the connection needs to be terminated
* for some other reason, even if %IEEE80211_HW_CONNECTION_MONITOR isn't set.
* *
* This function will cause immediate change to disassociated state, * This function will cause immediate change to disassociated state,
* without connection recovery attempts. * without connection recovery attempts.

Просмотреть файл

@ -391,6 +391,7 @@ struct ieee80211_if_managed {
unsigned long probe_timeout; unsigned long probe_timeout;
int probe_send_count; int probe_send_count;
bool nullfunc_failed; bool nullfunc_failed;
bool connection_loss;
struct mutex mtx; struct mutex mtx;
struct cfg80211_bss *associated; struct cfg80211_bss *associated;

Просмотреть файл

@ -1872,7 +1872,7 @@ static void ieee80211_beacon_connection_loss_work(struct work_struct *work)
rcu_read_unlock(); rcu_read_unlock();
} }
if (sdata->local->hw.flags & IEEE80211_HW_CONNECTION_MONITOR) { if (ifmgd->connection_loss) {
sdata_info(sdata, "Connection to AP %pM lost\n", sdata_info(sdata, "Connection to AP %pM lost\n",
ifmgd->bssid); ifmgd->bssid);
__ieee80211_disconnect(sdata); __ieee80211_disconnect(sdata);
@ -1900,6 +1900,7 @@ void ieee80211_beacon_loss(struct ieee80211_vif *vif)
trace_api_beacon_loss(sdata); trace_api_beacon_loss(sdata);
WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR); WARN_ON(hw->flags & IEEE80211_HW_CONNECTION_MONITOR);
sdata->u.mgd.connection_loss = false;
ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work); ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
} }
EXPORT_SYMBOL(ieee80211_beacon_loss); EXPORT_SYMBOL(ieee80211_beacon_loss);
@ -1911,7 +1912,7 @@ void ieee80211_connection_loss(struct ieee80211_vif *vif)
trace_api_connection_loss(sdata); trace_api_connection_loss(sdata);
WARN_ON(!(hw->flags & IEEE80211_HW_CONNECTION_MONITOR)); sdata->u.mgd.connection_loss = true;
ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work); ieee80211_queue_work(hw, &sdata->u.mgd.beacon_connection_loss_work);
} }
EXPORT_SYMBOL(ieee80211_connection_loss); EXPORT_SYMBOL(ieee80211_connection_loss);
@ -3154,6 +3155,7 @@ static void ieee80211_sta_bcn_mon_timer(unsigned long data)
if (local->quiescing) if (local->quiescing)
return; return;
sdata->u.mgd.connection_loss = false;
ieee80211_queue_work(&sdata->local->hw, ieee80211_queue_work(&sdata->local->hw,
&sdata->u.mgd.beacon_connection_loss_work); &sdata->u.mgd.beacon_connection_loss_work);
} }