aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/scan.c
diff options
context:
space:
mode:
authorJouni Malinen <j@w1.fi>2010-08-28 12:36:10 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-09-24 15:54:27 -0400
commit8dcb20038ade81f9a87c024e7f12ec74f0e95f33 (patch)
treefe970ab661be7ec61165bdcb5db2c4422a1822fd /net/mac80211/scan.c
parent29ad2facd47f8e37eab8b156e2c384fa181c8b4a (diff)
mac80211: Filter ProbeReq SuppRates based on TX rate mask
If the TX rate set has been masked, the removed rates can also be removed from the Supported Rates and Extended Supported Rates IEs in Probe Request frames. Signed-off-by: Jouni Malinen <j@w1.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/scan.c')
-rw-r--r--net/mac80211/scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c
index d60389ba9b95..1623e9d2086e 100644
--- a/net/mac80211/scan.c
+++ b/net/mac80211/scan.c
@@ -242,7 +242,7 @@ static bool ieee80211_prep_hw_scan(struct ieee80211_local *local)
242 local->hw_scan_req->n_channels = n_chans; 242 local->hw_scan_req->n_channels = n_chans;
243 243
244 ielen = ieee80211_build_preq_ies(local, (u8 *)local->hw_scan_req->ie, 244 ielen = ieee80211_build_preq_ies(local, (u8 *)local->hw_scan_req->ie,
245 req->ie, req->ie_len, band); 245 req->ie, req->ie_len, band, (u32) -1);
246 local->hw_scan_req->ie_len = ielen; 246 local->hw_scan_req->ie_len = ielen;
247 247
248 return true; 248 return true;