diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2008-07-29 13:59:31 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-07-29 16:55:09 -0400 |
commit | 56a6d13dfd49d90d72a1a962246206719dd9d143 (patch) | |
tree | 5b654deb1a072dab708e3ec34c6f427f9d03fa95 | |
parent | 77bbadd5ea893f364a0d1879723037678a03725c (diff) |
mac80211: fix mesh beaconing
This patch fixes mesh beaconing, which was broken by "mac80211: revamp
beacon configuration".
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | net/mac80211/mlme.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 35eb767cbcbe..acb04133a95d 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -3299,6 +3299,7 @@ void ieee80211_start_mesh(struct net_device *dev) | |||
3299 | ifsta = &sdata->u.sta; | 3299 | ifsta = &sdata->u.sta; |
3300 | ifsta->state = IEEE80211_MESH_UP; | 3300 | ifsta->state = IEEE80211_MESH_UP; |
3301 | ieee80211_sta_timer((unsigned long)sdata); | 3301 | ieee80211_sta_timer((unsigned long)sdata); |
3302 | ieee80211_if_config(sdata, IEEE80211_IFCC_BEACON); | ||
3302 | } | 3303 | } |
3303 | #endif | 3304 | #endif |
3304 | 3305 | ||