diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-21 20:01:00 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-14 16:53:19 -0700 |
commit | f0726c760790f57c24ba9f694335f3c7b2ff2c21 (patch) | |
tree | 47d1b6fb816ad319b62bbf9ce211ad3676182549 /net | |
parent | ef79e147a62e11f6a657b076bc98192fba725645 (diff) |
mac80211: initialize sta->last_rx in sta_info_alloc
commit 8bc8aecdc5e26cfda12dbd6867af4aa67836da6a upstream.
This field is used to determine the inactivity time. When in AP mode,
hostapd uses it for kicking out inactive clients after a while. Without this
patch, hostapd immediately deauthenticates a new client if it checks the
inactivity time before the client sends its first data frame.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/sta_info.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index 594f2318c3d..7de0c24cae9 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -276,6 +276,7 @@ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, memcpy(sta->sta.addr, addr, ETH_ALEN); sta->local = local; sta->sdata = sdata; + sta->last_rx = jiffies; sta->rate_ctrl = rate_control_get(local->rate_ctrl); sta->rate_ctrl_priv = rate_control_alloc_sta(sta->rate_ctrl, |