Commit b327c84c authored by Gregory Greenman's avatar Gregory Greenman Committed by Johannes Berg

wifi: mac80211: replace link_id with link_conf in start/stop_ap()

When calling start/stop_ap(), mac80211 already has a protected
link_conf pointer. Pass it to the driver, so it shouldn't
handle RCU protection.
Signed-off-by: default avatarGregory Greenman <gregory.greenman@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent fd17bf04
...@@ -2397,7 +2397,7 @@ static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm, ...@@ -2397,7 +2397,7 @@ static void iwl_mvm_bss_info_changed_station(struct iwl_mvm *mvm,
static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw, static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
...@@ -2525,20 +2525,20 @@ static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw, ...@@ -2525,20 +2525,20 @@ static int iwl_mvm_start_ap_ibss(struct ieee80211_hw *hw,
static int iwl_mvm_start_ap(struct ieee80211_hw *hw, static int iwl_mvm_start_ap(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
return iwl_mvm_start_ap_ibss(hw, vif, link_id); return iwl_mvm_start_ap_ibss(hw, vif, link_conf);
} }
static int iwl_mvm_start_ibss(struct ieee80211_hw *hw, static int iwl_mvm_start_ibss(struct ieee80211_hw *hw,
struct ieee80211_vif *vif) struct ieee80211_vif *vif)
{ {
return iwl_mvm_start_ap_ibss(hw, vif, 0); return iwl_mvm_start_ap_ibss(hw, vif, &vif->bss_conf);
} }
static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw, static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw); struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif); struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
...@@ -2603,15 +2603,15 @@ static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw, ...@@ -2603,15 +2603,15 @@ static void iwl_mvm_stop_ap_ibss(struct ieee80211_hw *hw,
static void iwl_mvm_stop_ap(struct ieee80211_hw *hw, static void iwl_mvm_stop_ap(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
iwl_mvm_stop_ap_ibss(hw, vif, link_id); iwl_mvm_stop_ap_ibss(hw, vif, link_conf);
} }
static void iwl_mvm_stop_ibss(struct ieee80211_hw *hw, static void iwl_mvm_stop_ibss(struct ieee80211_hw *hw,
struct ieee80211_vif *vif) struct ieee80211_vif *vif)
{ {
iwl_mvm_stop_ap_ibss(hw, vif, 0); iwl_mvm_stop_ap_ibss(hw, vif, &vif->bss_conf);
} }
static void static void
......
...@@ -430,7 +430,8 @@ static void rtw_ops_bss_info_changed(struct ieee80211_hw *hw, ...@@ -430,7 +430,8 @@ static void rtw_ops_bss_info_changed(struct ieee80211_hw *hw,
} }
static int rtw_ops_start_ap(struct ieee80211_hw *hw, static int rtw_ops_start_ap(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, unsigned int link_id) struct ieee80211_vif *vif,
struct ieee80211_bss_conf *link_conf)
{ {
struct rtw_dev *rtwdev = hw->priv; struct rtw_dev *rtwdev = hw->priv;
struct rtw_chip_info *chip = rtwdev->chip; struct rtw_chip_info *chip = rtwdev->chip;
......
...@@ -382,7 +382,8 @@ static void rtw89_ops_bss_info_changed(struct ieee80211_hw *hw, ...@@ -382,7 +382,8 @@ static void rtw89_ops_bss_info_changed(struct ieee80211_hw *hw,
} }
static int rtw89_ops_start_ap(struct ieee80211_hw *hw, static int rtw89_ops_start_ap(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, unsigned int link_id) struct ieee80211_vif *vif,
struct ieee80211_bss_conf *link_conf)
{ {
struct rtw89_dev *rtwdev = hw->priv; struct rtw89_dev *rtwdev = hw->priv;
struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
...@@ -403,7 +404,7 @@ static int rtw89_ops_start_ap(struct ieee80211_hw *hw, ...@@ -403,7 +404,7 @@ static int rtw89_ops_start_ap(struct ieee80211_hw *hw,
static static
void rtw89_ops_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, void rtw89_ops_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
struct rtw89_dev *rtwdev = hw->priv; struct rtw89_dev *rtwdev = hw->priv;
struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
......
...@@ -380,7 +380,7 @@ static void wfx_set_mfp_ap(struct wfx_vif *wvif) ...@@ -380,7 +380,7 @@ static void wfx_set_mfp_ap(struct wfx_vif *wvif)
} }
int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
struct wfx_vif *wvif = (struct wfx_vif *)vif->drv_priv; struct wfx_vif *wvif = (struct wfx_vif *)vif->drv_priv;
struct wfx_dev *wdev = wvif->wdev; struct wfx_dev *wdev = wvif->wdev;
...@@ -399,7 +399,7 @@ int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, ...@@ -399,7 +399,7 @@ int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
} }
void wfx_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, void wfx_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
struct wfx_vif *wvif = (struct wfx_vif *)vif->drv_priv; struct wfx_vif *wvif = (struct wfx_vif *)vif->drv_priv;
......
...@@ -30,9 +30,9 @@ void wfx_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags, ...@@ -30,9 +30,9 @@ void wfx_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags,
int wfx_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif); int wfx_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
void wfx_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif); void wfx_remove_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int wfx_start_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id); struct ieee80211_bss_conf *link_conf);
void wfx_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, void wfx_stop_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id); struct ieee80211_bss_conf *link_conf);
int wfx_join_ibss(struct ieee80211_hw *hw, struct ieee80211_vif *vif); int wfx_join_ibss(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
void wfx_leave_ibss(struct ieee80211_hw *hw, struct ieee80211_vif *vif); void wfx_leave_ibss(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
int wfx_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int wfx_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
......
...@@ -4092,9 +4092,9 @@ struct ieee80211_ops { ...@@ -4092,9 +4092,9 @@ struct ieee80211_ops {
u64 changed); u64 changed);
int (*start_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif, int (*start_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id); struct ieee80211_bss_conf *link_conf);
void (*stop_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif, void (*stop_ap)(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
unsigned int link_id); struct ieee80211_bss_conf *link_conf);
u64 (*prepare_multicast)(struct ieee80211_hw *hw, u64 (*prepare_multicast)(struct ieee80211_hw *hw,
struct netdev_hw_addr_list *mc_list); struct netdev_hw_addr_list *mc_list);
......
...@@ -1296,7 +1296,7 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev, ...@@ -1296,7 +1296,7 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
changed |= BSS_CHANGED_UNSOL_BCAST_PROBE_RESP; changed |= BSS_CHANGED_UNSOL_BCAST_PROBE_RESP;
} }
err = drv_start_ap(sdata->local, sdata, link_id); err = drv_start_ap(sdata->local, sdata, link_conf);
if (err) { if (err) {
old = sdata_dereference(link->u.ap.beacon, sdata); old = sdata_dereference(link->u.ap.beacon, sdata);
...@@ -1457,7 +1457,7 @@ static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev, ...@@ -1457,7 +1457,7 @@ static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev,
GFP_KERNEL); GFP_KERNEL);
} }
drv_stop_ap(sdata->local, sdata, link_id); drv_stop_ap(sdata->local, sdata, link_conf);
/* free all potentially still buffered bcast frames */ /* free all potentially still buffered bcast frames */
local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf); local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
......
...@@ -987,32 +987,38 @@ int drv_switch_vif_chanctx(struct ieee80211_local *local, ...@@ -987,32 +987,38 @@ int drv_switch_vif_chanctx(struct ieee80211_local *local,
static inline int drv_start_ap(struct ieee80211_local *local, static inline int drv_start_ap(struct ieee80211_local *local,
struct ieee80211_sub_if_data *sdata, struct ieee80211_sub_if_data *sdata,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
int ret = 0; int ret = 0;
/* make sure link_conf is protected */
sdata_assert_lock(sdata);
might_sleep(); might_sleep();
if (!check_sdata_in_driver(sdata)) if (!check_sdata_in_driver(sdata))
return -EIO; return -EIO;
trace_drv_start_ap(local, sdata, link_id); trace_drv_start_ap(local, sdata, link_conf);
if (local->ops->start_ap) if (local->ops->start_ap)
ret = local->ops->start_ap(&local->hw, &sdata->vif, link_id); ret = local->ops->start_ap(&local->hw, &sdata->vif, link_conf);
trace_drv_return_int(local, ret); trace_drv_return_int(local, ret);
return ret; return ret;
} }
static inline void drv_stop_ap(struct ieee80211_local *local, static inline void drv_stop_ap(struct ieee80211_local *local,
struct ieee80211_sub_if_data *sdata, struct ieee80211_sub_if_data *sdata,
unsigned int link_id) struct ieee80211_bss_conf *link_conf)
{ {
/* make sure link_conf is protected */
sdata_assert_lock(sdata);
if (!check_sdata_in_driver(sdata)) if (!check_sdata_in_driver(sdata))
return; return;
trace_drv_stop_ap(local, sdata, link_id); trace_drv_stop_ap(local, sdata, link_conf);
if (local->ops->stop_ap) if (local->ops->stop_ap)
local->ops->stop_ap(&local->hw, &sdata->vif, link_id); local->ops->stop_ap(&local->hw, &sdata->vif, link_conf);
trace_drv_return_void(local); trace_drv_return_void(local);
} }
......
...@@ -1754,9 +1754,9 @@ DEFINE_EVENT(local_sdata_chanctx, drv_unassign_vif_chanctx, ...@@ -1754,9 +1754,9 @@ DEFINE_EVENT(local_sdata_chanctx, drv_unassign_vif_chanctx,
TRACE_EVENT(drv_start_ap, TRACE_EVENT(drv_start_ap,
TP_PROTO(struct ieee80211_local *local, TP_PROTO(struct ieee80211_local *local,
struct ieee80211_sub_if_data *sdata, struct ieee80211_sub_if_data *sdata,
unsigned int link_id), struct ieee80211_bss_conf *link_conf),
TP_ARGS(local, sdata, link_id), TP_ARGS(local, sdata, link_conf),
TP_STRUCT__entry( TP_STRUCT__entry(
LOCAL_ENTRY LOCAL_ENTRY
...@@ -1769,17 +1769,12 @@ TRACE_EVENT(drv_start_ap, ...@@ -1769,17 +1769,12 @@ TRACE_EVENT(drv_start_ap,
), ),
TP_fast_assign( TP_fast_assign(
struct ieee80211_bss_conf *info =
sdata_dereference(sdata->vif.link_conf[link_id], sdata);
LOCAL_ASSIGN; LOCAL_ASSIGN;
VIF_ASSIGN; VIF_ASSIGN;
__entry->link_id = link_id; __entry->link_id = link_conf->link_id;
if (info) { __entry->dtimper = link_conf->dtim_period;
__entry->dtimper = info->dtim_period; __entry->bcnint = link_conf->beacon_int;
__entry->bcnint = info->beacon_int; __entry->hidden_ssid = link_conf->hidden_ssid;
__entry->hidden_ssid = info->hidden_ssid;
}
memcpy(__get_dynamic_array(ssid), memcpy(__get_dynamic_array(ssid),
sdata->vif.cfg.ssid, sdata->vif.cfg.ssid,
sdata->vif.cfg.ssid_len); sdata->vif.cfg.ssid_len);
...@@ -1794,9 +1789,9 @@ TRACE_EVENT(drv_start_ap, ...@@ -1794,9 +1789,9 @@ TRACE_EVENT(drv_start_ap,
TRACE_EVENT(drv_stop_ap, TRACE_EVENT(drv_stop_ap,
TP_PROTO(struct ieee80211_local *local, TP_PROTO(struct ieee80211_local *local,
struct ieee80211_sub_if_data *sdata, struct ieee80211_sub_if_data *sdata,
unsigned int link_id), struct ieee80211_bss_conf *link_conf),
TP_ARGS(local, sdata, link_id), TP_ARGS(local, sdata, link_conf),
TP_STRUCT__entry( TP_STRUCT__entry(
LOCAL_ENTRY LOCAL_ENTRY
...@@ -1807,7 +1802,7 @@ TRACE_EVENT(drv_stop_ap, ...@@ -1807,7 +1802,7 @@ TRACE_EVENT(drv_stop_ap,
TP_fast_assign( TP_fast_assign(
LOCAL_ASSIGN; LOCAL_ASSIGN;
VIF_ASSIGN; VIF_ASSIGN;
__entry->link_id = link_id; __entry->link_id = link_conf->link_id;
), ),
TP_printk( TP_printk(
......
...@@ -2579,7 +2579,8 @@ int ieee80211_reconfig(struct ieee80211_local *local) ...@@ -2579,7 +2579,8 @@ int ieee80211_reconfig(struct ieee80211_local *local)
changed |= BSS_CHANGED_AP_PROBE_RESP; changed |= BSS_CHANGED_AP_PROBE_RESP;
if (rcu_access_pointer(sdata->deflink.u.ap.beacon)) if (rcu_access_pointer(sdata->deflink.u.ap.beacon))
drv_start_ap(local, sdata, 0); drv_start_ap(local, sdata,
sdata->deflink.conf);
} }
fallthrough; fallthrough;
case NL80211_IFTYPE_MESH_POINT: case NL80211_IFTYPE_MESH_POINT:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment