mac80211: refactor association
Refactor the code to reserve an skb of the right size (instead of hoping 200 bytes are enough forever), and also put HT IE generation into an own function. Additionally, put the HT IE before the vendor-specific WMM IE. This still leaves things not quite ordered correctly, due to user-specified IEs, add a note about that for now. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
7d3a1c3b03
commit
77c8144ad3
@@ -1884,6 +1884,13 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
|
||||
ifmgd->ap_smps = ifmgd->req_smps;
|
||||
|
||||
wk->assoc.smps = ifmgd->ap_smps;
|
||||
/*
|
||||
* IEEE802.11n does not allow TKIP/WEP as pairwise ciphers in HT mode.
|
||||
* We still associate in non-HT mode (11a/b/g) if any one of these
|
||||
* ciphers is configured as pairwise.
|
||||
* We can set this to true for non-11n hardware, that'll be checked
|
||||
* separately along with the peer capabilities.
|
||||
*/
|
||||
wk->assoc.use_11n = !(ifmgd->flags & IEEE80211_STA_DISABLE_11N);
|
||||
wk->assoc.capability = req->bss->capability;
|
||||
wk->assoc.wmm_used = wk->assoc.bss->wmm_used;
|
||||
|
Reference in New Issue
Block a user