aboutsummaryrefslogtreecommitdiff
path: root/net/mac80211/work.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2011-07-18 18:08:36 +0200
committerJohn W. Linville <linville@tuxdriver.com>2011-07-19 16:50:00 -0400
commit85a237fe308405ee38eb9c6733571c49902ec229 (patch)
tree8e8fdbd588a749b7eb7da24d65684a2ca6161c6b /net/mac80211/work.c
parent34850ab25d74ab4eead62c3b4a9e8036a25cc669 (diff)
mac80211: implement scan supported rates
Scanning currently uses the TX rate mask to restrict the rate set, which is bogus. Make it use the new set of rates from userspace. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/work.c')
-rw-r--r--net/mac80211/work.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/work.c b/net/mac80211/work.c
index edf8583280c9..f0c74a1a9a02 100644
--- a/net/mac80211/work.c
+++ b/net/mac80211/work.c
@@ -450,7 +450,8 @@ ieee80211_direct_probe(struct ieee80211_work *wk)
* will not answer to direct packet in unassociated state.
*/
ieee80211_send_probe_req(sdata, NULL, wk->probe_auth.ssid,
- wk->probe_auth.ssid_len, NULL, 0, true);
+ wk->probe_auth.ssid_len, NULL, 0,
+ (u32) -1, true);
wk->timeout = jiffies + IEEE80211_AUTH_TIMEOUT;
run_again(local, wk->timeout);