|
@@ -895,26 +895,33 @@ void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
|
|
|
|
|
|
int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
|
|
int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
|
|
const u8 *ie, size_t ie_len,
|
|
const u8 *ie, size_t ie_len,
|
|
- enum ieee80211_band band)
|
|
|
|
|
|
+ enum ieee80211_band band, u32 rate_mask)
|
|
{
|
|
{
|
|
struct ieee80211_supported_band *sband;
|
|
struct ieee80211_supported_band *sband;
|
|
u8 *pos;
|
|
u8 *pos;
|
|
size_t offset = 0, noffset;
|
|
size_t offset = 0, noffset;
|
|
int supp_rates_len, i;
|
|
int supp_rates_len, i;
|
|
|
|
+ u8 rates[32];
|
|
|
|
+ int num_rates;
|
|
|
|
+ int ext_rates_len;
|
|
|
|
|
|
sband = local->hw.wiphy->bands[band];
|
|
sband = local->hw.wiphy->bands[band];
|
|
|
|
|
|
pos = buffer;
|
|
pos = buffer;
|
|
|
|
|
|
- supp_rates_len = min_t(int, sband->n_bitrates, 8);
|
|
|
|
|
|
+ num_rates = 0;
|
|
|
|
+ for (i = 0; i < sband->n_bitrates; i++) {
|
|
|
|
+ if ((BIT(i) & rate_mask) == 0)
|
|
|
|
+ continue; /* skip rate */
|
|
|
|
+ rates[num_rates++] = (u8) (sband->bitrates[i].bitrate / 5);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ supp_rates_len = min_t(int, num_rates, 8);
|
|
|
|
|
|
*pos++ = WLAN_EID_SUPP_RATES;
|
|
*pos++ = WLAN_EID_SUPP_RATES;
|
|
*pos++ = supp_rates_len;
|
|
*pos++ = supp_rates_len;
|
|
-
|
|
|
|
- for (i = 0; i < supp_rates_len; i++) {
|
|
|
|
- int rate = sband->bitrates[i].bitrate;
|
|
|
|
- *pos++ = (u8) (rate / 5);
|
|
|
|
- }
|
|
|
|
|
|
+ memcpy(pos, rates, supp_rates_len);
|
|
|
|
+ pos += supp_rates_len;
|
|
|
|
|
|
/* insert "request information" if in custom IEs */
|
|
/* insert "request information" if in custom IEs */
|
|
if (ie && ie_len) {
|
|
if (ie && ie_len) {
|
|
@@ -932,14 +939,12 @@ int ieee80211_build_preq_ies(struct ieee80211_local *local, u8 *buffer,
|
|
offset = noffset;
|
|
offset = noffset;
|
|
}
|
|
}
|
|
|
|
|
|
- if (sband->n_bitrates > i) {
|
|
|
|
|
|
+ ext_rates_len = num_rates - supp_rates_len;
|
|
|
|
+ if (ext_rates_len > 0) {
|
|
*pos++ = WLAN_EID_EXT_SUPP_RATES;
|
|
*pos++ = WLAN_EID_EXT_SUPP_RATES;
|
|
- *pos++ = sband->n_bitrates - i;
|
|
|
|
-
|
|
|
|
- for (; i < sband->n_bitrates; i++) {
|
|
|
|
- int rate = sband->bitrates[i].bitrate;
|
|
|
|
- *pos++ = (u8) (rate / 5);
|
|
|
|
- }
|
|
|
|
|
|
+ *pos++ = ext_rates_len;
|
|
|
|
+ memcpy(pos, rates + supp_rates_len, ext_rates_len);
|
|
|
|
+ pos += ext_rates_len;
|
|
}
|
|
}
|
|
|
|
|
|
/* insert custom IEs that go before HT */
|
|
/* insert custom IEs that go before HT */
|
|
@@ -1018,7 +1023,9 @@ void ieee80211_send_probe_req(struct ieee80211_sub_if_data *sdata, u8 *dst,
|
|
}
|
|
}
|
|
|
|
|
|
buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
|
|
buf_len = ieee80211_build_preq_ies(local, buf, ie, ie_len,
|
|
- local->hw.conf.channel->band);
|
|
|
|
|
|
+ local->hw.conf.channel->band,
|
|
|
|
+ sdata->rc_rateidx_mask
|
|
|
|
+ [local->hw.conf.channel->band]);
|
|
|
|
|
|
skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
|
|
skb = ieee80211_probereq_get(&local->hw, &sdata->vif,
|
|
ssid, ssid_len,
|
|
ssid, ssid_len,
|