mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
wifi: mac80211: add set_active_links variant not locking sdata
There are cases where keeping sdata locked for an operation. Add a variant that does not take sdata lock to permit these usecases. Signed-off-by: Benjamin Berg <benjamin.berg@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
ff32b4506f
commit
79973d5cfd
@ -2034,6 +2034,7 @@ void ieee80211_link_stop(struct ieee80211_link_data *link);
|
||||
int ieee80211_vif_set_links(struct ieee80211_sub_if_data *sdata,
|
||||
u16 new_links, u16 dormant_links);
|
||||
void ieee80211_vif_clear_links(struct ieee80211_sub_if_data *sdata);
|
||||
int __ieee80211_set_active_links(struct ieee80211_vif *vif, u16 active_links);
|
||||
|
||||
/* tx handling */
|
||||
void ieee80211_clear_tx_pending(struct ieee80211_local *local);
|
||||
|
@ -447,14 +447,14 @@ static int _ieee80211_set_active_links(struct ieee80211_sub_if_data *sdata,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int ieee80211_set_active_links(struct ieee80211_vif *vif, u16 active_links)
|
||||
int __ieee80211_set_active_links(struct ieee80211_vif *vif, u16 active_links)
|
||||
{
|
||||
struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
|
||||
struct ieee80211_local *local = sdata->local;
|
||||
u16 old_active;
|
||||
int ret;
|
||||
|
||||
sdata_lock(sdata);
|
||||
sdata_assert_lock(sdata);
|
||||
mutex_lock(&local->sta_mtx);
|
||||
mutex_lock(&local->mtx);
|
||||
mutex_lock(&local->key_mtx);
|
||||
@ -476,6 +476,17 @@ int ieee80211_set_active_links(struct ieee80211_vif *vif, u16 active_links)
|
||||
mutex_unlock(&local->key_mtx);
|
||||
mutex_unlock(&local->mtx);
|
||||
mutex_unlock(&local->sta_mtx);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int ieee80211_set_active_links(struct ieee80211_vif *vif, u16 active_links)
|
||||
{
|
||||
struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
|
||||
int ret;
|
||||
|
||||
sdata_lock(sdata);
|
||||
ret = __ieee80211_set_active_links(vif, active_links);
|
||||
sdata_unlock(sdata);
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user