mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
mac80211: mesh: flush stations before beacons are stopped
Some drivers (e.g. wl18xx) expect that the last stage in the de-initialization process will be stopping the beacons, similar to AP flow. Update ieee80211_stop_mesh() flow accordingly. As peers can be removed dynamically, this would not impact other drivers. Tested also on Ralink RT3572 chipset. Signed-off-by: Maital Hahn <maitalm@ti.com> Signed-off-by: Yaniv Machani <yanivma@ti.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
4e3f21bc7b
commit
c37a54ac37
1 changed files with 6 additions and 4 deletions
|
@ -881,20 +881,22 @@ void ieee80211_stop_mesh(struct ieee80211_sub_if_data *sdata)
|
||||||
|
|
||||||
netif_carrier_off(sdata->dev);
|
netif_carrier_off(sdata->dev);
|
||||||
|
|
||||||
|
/* flush STAs and mpaths on this iface */
|
||||||
|
sta_info_flush(sdata);
|
||||||
|
mesh_path_flush_by_iface(sdata);
|
||||||
|
|
||||||
/* stop the beacon */
|
/* stop the beacon */
|
||||||
ifmsh->mesh_id_len = 0;
|
ifmsh->mesh_id_len = 0;
|
||||||
sdata->vif.bss_conf.enable_beacon = false;
|
sdata->vif.bss_conf.enable_beacon = false;
|
||||||
clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
|
clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
|
||||||
ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
|
ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
|
||||||
|
|
||||||
|
/* remove beacon */
|
||||||
bcn = rcu_dereference_protected(ifmsh->beacon,
|
bcn = rcu_dereference_protected(ifmsh->beacon,
|
||||||
lockdep_is_held(&sdata->wdev.mtx));
|
lockdep_is_held(&sdata->wdev.mtx));
|
||||||
RCU_INIT_POINTER(ifmsh->beacon, NULL);
|
RCU_INIT_POINTER(ifmsh->beacon, NULL);
|
||||||
kfree_rcu(bcn, rcu_head);
|
kfree_rcu(bcn, rcu_head);
|
||||||
|
|
||||||
/* flush STAs and mpaths on this iface */
|
|
||||||
sta_info_flush(sdata);
|
|
||||||
mesh_path_flush_by_iface(sdata);
|
|
||||||
|
|
||||||
/* free all potentially still buffered group-addressed frames */
|
/* free all potentially still buffered group-addressed frames */
|
||||||
local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
|
local->total_ps_buffered -= skb_queue_len(&ifmsh->ps.bc_buf);
|
||||||
skb_queue_purge(&ifmsh->ps.bc_buf);
|
skb_queue_purge(&ifmsh->ps.bc_buf);
|
||||||
|
|
Loading…
Add table
Reference in a new issue