Commit 3eec314f authored by Samuel Ortiz's avatar Samuel Ortiz Committed by Greg Kroah-Hartman

Staging: rtl8187se: Do not autoconnect based on probe response

Getting a probe response after sending a probe request to a specific SSID
doesnt mean we're trying to associate with this SSID.
wpa_supplicant should be the only one deciding when to join an SSID, not the
kernel.
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b46966ee
...@@ -1489,8 +1489,6 @@ inline void ieee80211_process_probe_response( ...@@ -1489,8 +1489,6 @@ inline void ieee80211_process_probe_response(
memcpy(target, &network, sizeof(*target)); memcpy(target, &network, sizeof(*target));
list_add_tail(&target->list, &ieee->network_list); list_add_tail(&target->list, &ieee->network_list);
if(ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE)
ieee80211_softmac_new_net(ieee,&network);
} else { } else {
IEEE80211_DEBUG_SCAN("Updating '%s' (%pM) via %s.\n", IEEE80211_DEBUG_SCAN("Updating '%s' (%pM) via %s.\n",
escape_essid(target->ssid, escape_essid(target->ssid,
...@@ -1516,8 +1514,6 @@ inline void ieee80211_process_probe_response( ...@@ -1516,8 +1514,6 @@ inline void ieee80211_process_probe_response(
renew = 1; renew = 1;
//YJ,add,080819,for hidden ap,end //YJ,add,080819,for hidden ap,end
update_network(target, &network); update_network(target, &network);
if(renew && (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE))
ieee80211_softmac_new_net(ieee,&network);
} }
spin_unlock_irqrestore(&ieee->lock, flags); spin_unlock_irqrestore(&ieee->lock, flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment