From: Rajkumar Manoharan Date: Thu, 7 Jul 2011 18:03:39 +0000 (+0530) Subject: mac80211: Restart STA timers only on associated state X-Git-Tag: v2.6.33.17~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d775d2889cd3d74a1d1f35e48a2722a5a70ce270;p=thirdparty%2Fkernel%2Fstable.git mac80211: Restart STA timers only on associated state commit 676b58c27475a9defccc025fea1cbd2b141ee539 upstream. A panic was observed when the device is failed to resume properly, and there are no running interfaces. ieee80211_reconfig tries to restart STA timers on unassociated state. Signed-off-by: Rajkumar Manoharan Signed-off-by: John W. Linville Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index ecc1e4f7035b1..f65942f950403 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -2318,6 +2318,9 @@ void ieee80211_sta_restart(struct ieee80211_sub_if_data *sdata) { struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; + if (!ifmgd->associated) + return; + if (test_and_clear_bit(TMR_RUNNING_TIMER, &ifmgd->timers_running)) add_timer(&ifmgd->timer); if (test_and_clear_bit(TMR_RUNNING_CHANSW, &ifmgd->timers_running))