Commit 1de547d6 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Fix disconnect event reporting

Driver does not report disconnect event properly when in connecting state,
this leads to issues failures in starting reconnection. Send a disconnect
command to target when a disconnect event is received with reason code
other than 3 (DISCONNECT_CMD - disconnect request from host) to make the
frimware stop trying to connect even after giving disconnect event. There
will be one more disconnect event for this disconnect command with reason
code DISCONNECT_CMD which will be notified to cfg80211.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 5694f962
...@@ -602,22 +602,20 @@ void ath6kl_cfg80211_disconnect_event(struct ath6kl *ar, u8 reason, ...@@ -602,22 +602,20 @@ void ath6kl_cfg80211_disconnect_event(struct ath6kl *ar, u8 reason,
} }
} }
if (!test_bit(CONNECT_PEND, &ar->flag)) { /*
if (reason != DISCONNECT_CMD) * Send a disconnect command to target when a disconnect event is
ath6kl_wmi_disconnect_cmd(ar->wmi); * received with reason code other than 3 (DISCONNECT_CMD - disconnect
* request from host) to make the firmware stop trying to connect even
return; * after giving disconnect event. There will be one more disconnect
} * event for this disconnect command with reason code DISCONNECT_CMD
* which will be notified to cfg80211.
*/
if (reason == NO_NETWORK_AVAIL) { if (reason != DISCONNECT_CMD) {
/* connect cmd failed */
ath6kl_wmi_disconnect_cmd(ar->wmi); ath6kl_wmi_disconnect_cmd(ar->wmi);
return; return;
} }
if (reason != DISCONNECT_CMD)
return;
clear_bit(CONNECT_PEND, &ar->flag); clear_bit(CONNECT_PEND, &ar->flag);
if (ar->sme_state == SME_CONNECTING) { if (ar->sme_state == SME_CONNECTING) {
......
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