aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorJouni Malinen <jouni.malinen@atheros.com>2009-05-14 14:15:36 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-05-20 14:46:24 -0400
commit92778180f7fca7f7797de8020900a7fea175f7e3 (patch)
treed65b23ececcd2fab32b1b372f7ad1c629fde5986 /net/mac80211/mlme.c
parent13bdcd90bbce7c07e0dda0ff31e9497b8cabf1eb (diff)
mac80211: Cancel pending probereq poll on beacon RX
While the probe request poll is expected to work, it looks like it does not always result in getting a response. The exact reason for this is unclear, but anyway, if we do receive a Beacon frame from our AP, there is no need to disconnect based on the probereq poll. This seems to help keep the connection bit more stable in cases where beacon loss is occurring semi-frequently. Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index a1944b8722e9..47bc3030ca87 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -1824,6 +1824,16 @@ static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
1824 memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0) 1824 memcmp(ifmgd->bssid, mgmt->bssid, ETH_ALEN) != 0)
1825 return; 1825 return;
1826 1826
1827 if (ifmgd->flags & IEEE80211_STA_PROBEREQ_POLL) {
1828#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1829 if (net_ratelimit()) {
1830 printk(KERN_DEBUG "%s: cancelling probereq poll due "
1831 "to a received beacon\n", sdata->dev->name);
1832 }
1833#endif
1834 ifmgd->flags &= ~IEEE80211_STA_PROBEREQ_POLL;
1835 }
1836
1827 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4); 1837 ncrc = crc32_be(0, (void *)&mgmt->u.beacon.beacon_int, 4);
1828 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable, 1838 ncrc = ieee802_11_parse_elems_crc(mgmt->u.beacon.variable,
1829 len - baselen, &elems, 1839 len - baselen, &elems,