wcn36xx: Treat repeated BMPS entry fail as connection loss
authorBryan O'Donoghue <bryan.odonoghue@linaro.org>
Fri, 22 Oct 2021 14:04:46 +0000 (15:04 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 27 Oct 2021 07:43:30 +0000 (10:43 +0300)
On an open AP when you pull the plug on the AP, if we are not already in
BMPS mode then the firmware will not generate a disconnection event.

Instead we need to monitor for failure to enter BMPS and treat a string of
failures as connection loss.

Secure AP connections don't appear to demonstrate this behavior so the
work-around is limited to open APs only.

Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211022140447.2846248-2-bryan.odonoghue@linaro.org
drivers/net/wireless/ath/wcn36xx/pmc.c
drivers/net/wireless/ath/wcn36xx/wcn36xx.h

index 2d0780fefd477efe00cde748667237654821a2e2..6a9cfeabd7419b71ba5ddcd5ed3b2e121b178e8c 100644 (file)
@@ -18,6 +18,8 @@
 
 #include "wcn36xx.h"
 
+#define WCN36XX_BMPS_FAIL_THREHOLD 3
+
 int wcn36xx_pmc_enter_bmps_state(struct wcn36xx *wcn,
                                 struct ieee80211_vif *vif)
 {
@@ -31,6 +33,7 @@ int wcn36xx_pmc_enter_bmps_state(struct wcn36xx *wcn,
        if (!ret) {
                wcn36xx_dbg(WCN36XX_DBG_PMC, "Entered BMPS\n");
                vif_priv->pw_state = WCN36XX_BMPS;
+               vif_priv->bmps_fail_ct = 0;
                vif->driver_flags |= IEEE80211_VIF_BEACON_FILTER;
        } else {
                /*
@@ -39,6 +42,11 @@ int wcn36xx_pmc_enter_bmps_state(struct wcn36xx *wcn,
                 * received just after auth complete
                 */
                wcn36xx_err("Can not enter BMPS!\n");
+
+               if (vif_priv->bmps_fail_ct++ == WCN36XX_BMPS_FAIL_THREHOLD) {
+                       ieee80211_connection_loss(vif);
+                       vif_priv->bmps_fail_ct = 0;
+               }
        }
        return ret;
 }
index ae63bc6916d6605ece139a3f63b4a9e11e5e41a5..7a064f8f1635109e0a033ef11cfd0bf2026f8198 100644 (file)
@@ -151,6 +151,8 @@ struct wcn36xx_vif {
        } rekey_data;
 
        struct list_head sta_list;
+
+       int bmps_fail_ct;
 };
 
 /**