diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-01-21 09:13:48 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:09 -0500 |
commit | 881d948c23442173a011f1adcfe4c95bf7f27515 (patch) | |
tree | 3d7e6a4bf23b960cf45a4d2c5734578168ce0424 /include/net | |
parent | 369391db1aabd089cefaadaabb6d9fc82e78b0a7 (diff) |
wireless: restrict to 32 legacy rates
Since the standards only define 12 legacy rates, 32 is certainly
a sane upper limit and we don't need to use u64 everywhere. Add
sanity checking that no more than 32 rates are registered and
change the variables to u32 throughout.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/mac80211.h | 4 | ||||
-rw-r--r-- | include/net/wireless.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index ef42559694f1..c76484009baa 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -207,7 +207,7 @@ struct ieee80211_bss_conf { | |||
207 | u16 beacon_int; | 207 | u16 beacon_int; |
208 | u16 assoc_capability; | 208 | u16 assoc_capability; |
209 | u64 timestamp; | 209 | u64 timestamp; |
210 | u64 basic_rates; | 210 | u32 basic_rates; |
211 | struct ieee80211_bss_ht_conf ht; | 211 | struct ieee80211_bss_ht_conf ht; |
212 | }; | 212 | }; |
213 | 213 | ||
@@ -761,7 +761,7 @@ enum set_key_cmd { | |||
761 | * sizeof(void *), size is determined in hw information. | 761 | * sizeof(void *), size is determined in hw information. |
762 | */ | 762 | */ |
763 | struct ieee80211_sta { | 763 | struct ieee80211_sta { |
764 | u64 supp_rates[IEEE80211_NUM_BANDS]; | 764 | u32 supp_rates[IEEE80211_NUM_BANDS]; |
765 | u8 addr[ETH_ALEN]; | 765 | u8 addr[ETH_ALEN]; |
766 | u16 aid; | 766 | u16 aid; |
767 | struct ieee80211_sta_ht_cap ht_cap; | 767 | struct ieee80211_sta_ht_cap ht_cap; |
diff --git a/include/net/wireless.h b/include/net/wireless.h index 9e73aae40c5d..6c5b08204232 100644 --- a/include/net/wireless.h +++ b/include/net/wireless.h | |||
@@ -367,7 +367,7 @@ ieee80211_get_channel(struct wiphy *wiphy, int freq) | |||
367 | */ | 367 | */ |
368 | struct ieee80211_rate * | 368 | struct ieee80211_rate * |
369 | ieee80211_get_response_rate(struct ieee80211_supported_band *sband, | 369 | ieee80211_get_response_rate(struct ieee80211_supported_band *sband, |
370 | u64 basic_rates, int bitrate); | 370 | u32 basic_rates, int bitrate); |
371 | 371 | ||
372 | /** | 372 | /** |
373 | * regulatory_hint - driver hint to the wireless core a regulatory domain | 373 | * regulatory_hint - driver hint to the wireless core a regulatory domain |