Commit 30df14d0 authored by Eliad Peller's avatar Eliad Peller Committed by Luciano Coelho

wl12xx: avoid redundant join on interface reconfiguration

ieee80211_reconfig() sets most of the "changed" flags regardless
of the actual change (e.g. BSS_CHANGED_ASSOC will be set even if
the interface is still not associated). in this case the driver
will issue some unneeded commands.

Since the driver relies solely on the BSS_CHANGED_ASSOC flag,
without checking if there was an actual change, it will end up
issuing unjoin() and dummy_join() commands, although it was
never associated and should just remain idle.

Avoid it by checking the actual state change, in addition to the
"changed" flag.

(there seem to be more redundant configuration commands being
issued, but they shouldn't harm)
Signed-off-by: default avatarEliad Peller <eliad@wizery.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent a20a5b7e
...@@ -2698,8 +2698,10 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl, ...@@ -2698,8 +2698,10 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl,
} }
} else { } else {
/* use defaults when not associated */ /* use defaults when not associated */
bool was_assoc =
!!test_and_clear_bit(WL1271_FLAG_STA_ASSOCIATED,
&wl->flags);
clear_bit(WL1271_FLAG_STA_STATE_SENT, &wl->flags); clear_bit(WL1271_FLAG_STA_STATE_SENT, &wl->flags);
clear_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags);
wl->aid = 0; wl->aid = 0;
/* free probe-request template */ /* free probe-request template */
...@@ -2725,10 +2727,12 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl, ...@@ -2725,10 +2727,12 @@ static void wl1271_bss_info_changed_sta(struct wl1271 *wl,
goto out; goto out;
/* restore the bssid filter and go to dummy bssid */ /* restore the bssid filter and go to dummy bssid */
if (was_assoc) {
wl1271_unjoin(wl); wl1271_unjoin(wl);
wl1271_dummy_join(wl); wl1271_dummy_join(wl);
} }
} }
}
ret = wl1271_bss_erp_info_changed(wl, bss_conf, changed); ret = wl1271_bss_erp_info_changed(wl, bss_conf, changed);
if (ret < 0) if (ret < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment