diff options
author | Jouni Malinen <j@w1.fi> | 2009-09-26 22:30:15 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-29 17:25:16 -0400 |
commit | ffed1307c9672337fc7d051ab5ed04f8806467e2 (patch) | |
tree | a9c362b849064003def58184b26194f7ff30aeaf /drivers/net/wireless/mac80211_hwsim.c | |
parent | b96ab540c1deac17238c4902c328ee08c3130370 (diff) | |
download | blackbird-obmc-linux-ffed1307c9672337fc7d051ab5ed04f8806467e2.tar.gz blackbird-obmc-linux-ffed1307c9672337fc7d051ab5ed04f8806467e2.zip |
mac80211_hwsim: Fix initial beacon timer configuration
mac80211_hwsim does not start transmitting Beacon frames when hostapd
is started for the first time and restarting hostapd fixes this. The
issue is caused by the config() handler not being able to start
beacon_timer when beacon interval is not yet known and
bss_info_changed() handler not starting the timer. This can be fixed by
making the bss_info_changed() update the timer.
Signed-off-by: Jouni Malinen <j@w1.fi>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mac80211_hwsim.c')
-rw-r--r-- | drivers/net/wireless/mac80211_hwsim.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index 896f532182f0..38cfd79e0590 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c @@ -631,6 +631,9 @@ static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw, data->beacon_int = 1024 * info->beacon_int / 1000 * HZ / 1000; if (WARN_ON(!data->beacon_int)) data->beacon_int = 1; + if (data->started) + mod_timer(&data->beacon_timer, + jiffies + data->beacon_int); } if (changed & BSS_CHANGED_ERP_CTS_PROT) { |