diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-03-26 14:02:26 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-04-16 15:29:42 +0200 |
commit | 37799e52a29af2268d1fbe18908a0d6b9f68af88 (patch) | |
tree | 709de66fb30ca2a5d15afa0c8c5daf9e18cfb37b /net/mac80211/rx.c | |
parent | 6553bf04ff6686db658e09626edad003809f6baf (diff) | |
download | linux-stable-37799e52a29af2268d1fbe18908a0d6b9f68af88.tar.gz linux-stable-37799e52a29af2268d1fbe18908a0d6b9f68af88.tar.bz2 linux-stable-37799e52a29af2268d1fbe18908a0d6b9f68af88.zip |
mac80211: unify CSA action frame/beacon processing
CSA action frame content should be processed as variable IEs
rather than fixed to make it extensible. Unify the code and
process them just like CSA in beacons to make it easier to
extend for HT/VHT.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 5168f89c754d..e9825f15c14c 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -2507,10 +2507,6 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx) ieee80211_process_measurement_req(sdata, mgmt, len); goto handled; case WLAN_ACTION_SPCT_CHL_SWITCH: - if (len < (IEEE80211_MIN_ACTION_SIZE + - sizeof(mgmt->u.action.u.chan_switch))) - break; - if (sdata->vif.type != NL80211_IFTYPE_STATION) break; |