diff options
author | Jouni Malinen <j@w1.fi> | 2010-08-28 19:36:10 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-09-24 15:54:27 -0400 |
commit | 8dcb20038ade81f9a87c024e7f12ec74f0e95f33 (patch) | |
tree | fe970ab661be7ec61165bdcb5db2c4422a1822fd /net/mac80211/scan.c | |
parent | 29ad2facd47f8e37eab8b156e2c384fa181c8b4a (diff) | |
download | op-kernel-dev-8dcb20038ade81f9a87c024e7f12ec74f0e95f33.zip op-kernel-dev-8dcb20038ade81f9a87c024e7f12ec74f0e95f33.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c index d60389b..1623e9d 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) local->hw_scan_req->n_channels = n_chans; ielen = ieee80211_build_preq_ies(local, (u8 *)local->hw_scan_req->ie, - req->ie, req->ie_len, band); + req->ie, req->ie_len, band, (u32) -1); local->hw_scan_req->ie_len = ielen; return true; |