aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mesh_plink.c
diff options
context:
space:
mode:
authorThomas Pedersen <thomas@cozybit.com>2012-04-18 22:23:43 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-04-23 15:34:07 -0400
commitf743ff4907fa5bc2b460f48ace831a560806a9fb (patch)
tree2bf0f42ee4935ff5ee558d5db6a6e529ec1997e3 /net/mac80211/mesh_plink.c
parent54ab1ffb6cd94e5c013d61c192e78e30fdf25f8a (diff)
mac80211: refactor mesh peer rate handling
To avoid passing supp_rates and basic_rates around all the time, just derive these when needed in mesh_matches_local() and mesh_peer_init(). Signed-off-by: Thomas Pedersen <thomas@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mesh_plink.c')
-rw-r--r--net/mac80211/mesh_plink.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c
index c3a0b0a4f97f..c2af7b3d03cd 100644
--- a/net/mac80211/mesh_plink.c
+++ b/net/mac80211/mesh_plink.c
@@ -268,20 +268,22 @@ static int mesh_plink_frame_tx(struct ieee80211_sub_if_data *sdata,
268 * 268 *
269 * @sdata: local meshif 269 * @sdata: local meshif
270 * @addr: peer's address 270 * @addr: peer's address
271 * @rates: station's supported rates
272 * @elems: IEs from beacon or mesh peering frame 271 * @elems: IEs from beacon or mesh peering frame
273 * 272 *
274 * call under RCU 273 * call under RCU
275 */ 274 */
276static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata, 275static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
277 u8 *addr, u32 rates, 276 u8 *addr,
278 struct ieee802_11_elems *elems) 277 struct ieee802_11_elems *elems)
279{ 278{
280 struct ieee80211_local *local = sdata->local; 279 struct ieee80211_local *local = sdata->local;
280 enum ieee80211_band band = local->oper_channel->band;
281 struct ieee80211_supported_band *sband; 281 struct ieee80211_supported_band *sband;
282 u32 rates, basic_rates = 0;
282 struct sta_info *sta; 283 struct sta_info *sta;
283 284
284 sband = local->hw.wiphy->bands[local->oper_channel->band]; 285 sband = local->hw.wiphy->bands[band];
286 rates = ieee80211_sta_get_rates(local, elems, band, &basic_rates);
285 287
286 sta = sta_info_get(sdata, addr); 288 sta = sta_info_get(sdata, addr);
287 if (!sta) { 289 if (!sta) {
@@ -292,7 +294,7 @@ static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
292 294
293 spin_lock_bh(&sta->lock); 295 spin_lock_bh(&sta->lock);
294 sta->last_rx = jiffies; 296 sta->last_rx = jiffies;
295 sta->sta.supp_rates[local->hw.conf.channel->band] = rates; 297 sta->sta.supp_rates[band] = rates;
296 if (elems->ht_cap_elem) 298 if (elems->ht_cap_elem)
297 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband, 299 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
298 elems->ht_cap_elem, 300 elems->ht_cap_elem,
@@ -306,8 +308,8 @@ static struct sta_info *mesh_peer_init(struct ieee80211_sub_if_data *sdata,
306 return sta; 308 return sta;
307} 309}
308 310
309void mesh_neighbour_update(u8 *hw_addr, u32 rates, 311void mesh_neighbour_update(struct ieee80211_sub_if_data *sdata,
310 struct ieee80211_sub_if_data *sdata, 312 u8 *hw_addr,
311 struct ieee802_11_elems *elems) 313 struct ieee802_11_elems *elems)
312{ 314{
313 struct sta_info *sta; 315 struct sta_info *sta;
@@ -322,7 +324,7 @@ void mesh_neighbour_update(u8 *hw_addr, u32 rates,
322 } 324 }
323 325
324 rcu_read_lock(); 326 rcu_read_lock();
325 sta = mesh_peer_init(sdata, hw_addr, rates, elems); 327 sta = mesh_peer_init(sdata, hw_addr, elems);
326 if (!sta) 328 if (!sta)
327 goto out; 329 goto out;
328 330
@@ -479,7 +481,6 @@ void mesh_plink_block(struct sta_info *sta)
479void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt, 481void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_mgmt *mgmt,
480 size_t len, struct ieee80211_rx_status *rx_status) 482 size_t len, struct ieee80211_rx_status *rx_status)
481{ 483{
482 struct ieee80211_local *local = sdata->local;
483 struct ieee802_11_elems elems; 484 struct ieee802_11_elems elems;
484 struct sta_info *sta; 485 struct sta_info *sta;
485 enum plink_event event; 486 enum plink_event event;
@@ -488,7 +489,6 @@ void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_m
488 bool deactivated, matches_local = true; 489 bool deactivated, matches_local = true;
489 u8 ie_len; 490 u8 ie_len;
490 u8 *baseaddr; 491 u8 *baseaddr;
491 u32 rates, basic_rates = 0;
492 __le16 plid, llid, reason; 492 __le16 plid, llid, reason;
493#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG 493#ifdef CONFIG_MAC80211_VERBOSE_MPL_DEBUG
494 static const char *mplstates[] = { 494 static const char *mplstates[] = {
@@ -583,11 +583,8 @@ void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_m
583 583
584 /* Now we will figure out the appropriate event... */ 584 /* Now we will figure out the appropriate event... */
585 event = PLINK_UNDEFINED; 585 event = PLINK_UNDEFINED;
586 rates = ieee80211_sta_get_rates(local, &elems,
587 rx_status->band, &basic_rates);
588
589 if (ftype != WLAN_SP_MESH_PEERING_CLOSE && 586 if (ftype != WLAN_SP_MESH_PEERING_CLOSE &&
590 (!mesh_matches_local(&elems, sdata, basic_rates))) { 587 !mesh_matches_local(sdata, &elems)) {
591 matches_local = false; 588 matches_local = false;
592 switch (ftype) { 589 switch (ftype) {
593 case WLAN_SP_MESH_PEERING_OPEN: 590 case WLAN_SP_MESH_PEERING_OPEN:
@@ -660,7 +657,7 @@ void mesh_rx_plink_frame(struct ieee80211_sub_if_data *sdata, struct ieee80211_m
660 657
661 if (event == OPN_ACPT) { 658 if (event == OPN_ACPT) {
662 /* allocate sta entry if necessary and update info */ 659 /* allocate sta entry if necessary and update info */
663 sta = mesh_peer_init(sdata, mgmt->sa, rates, &elems); 660 sta = mesh_peer_init(sdata, mgmt->sa, &elems);
664 if (!sta) { 661 if (!sta) {
665 mpl_dbg("Mesh plink: failed to init peer!\n"); 662 mpl_dbg("Mesh plink: failed to init peer!\n");
666 rcu_read_unlock(); 663 rcu_read_unlock();