|
@@ -495,6 +495,66 @@ void lim_deactivate_timers(struct mac_context *mac_ctx)
|
|
|
tx_timer_deactivate(&lim_timer->sae_auth_timer);
|
|
|
}
|
|
|
|
|
|
+void lim_deactivate_timers_for_vdev(struct mac_context *mac_ctx,
|
|
|
+ uint8_t vdev_id)
|
|
|
+{
|
|
|
+ tLimTimers *lim_timer = &mac_ctx->lim.lim_timers;
|
|
|
+ struct pe_session *pe_session;
|
|
|
+
|
|
|
+ pe_session = pe_find_session_by_vdev_id(mac_ctx, vdev_id);
|
|
|
+ if (!pe_session) {
|
|
|
+ pe_err("pe session invalid for vdev %d", vdev_id);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ pe_debug("pe limMlmState %s vdev %d",
|
|
|
+ lim_mlm_state_str(pe_session->limMlmState),
|
|
|
+ vdev_id);
|
|
|
+ switch (pe_session->limMlmState) {
|
|
|
+ case eLIM_MLM_WT_JOIN_BEACON_STATE:
|
|
|
+ if (tx_timer_running(
|
|
|
+ &lim_timer->gLimJoinFailureTimer)) {
|
|
|
+ pe_debug("Trigger Join failure timeout for vdev %d",
|
|
|
+ vdev_id);
|
|
|
+ tx_timer_deactivate(
|
|
|
+ &lim_timer->gLimJoinFailureTimer);
|
|
|
+ lim_process_join_failure_timeout(mac_ctx);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case eLIM_MLM_WT_AUTH_FRAME2_STATE:
|
|
|
+ case eLIM_MLM_WT_AUTH_FRAME4_STATE:
|
|
|
+ if (tx_timer_running(
|
|
|
+ &lim_timer->gLimAuthFailureTimer)) {
|
|
|
+ pe_debug("Trigger Auth failure timeout for vdev %d",
|
|
|
+ vdev_id);
|
|
|
+ tx_timer_deactivate(
|
|
|
+ &lim_timer->gLimAuthFailureTimer);
|
|
|
+ lim_process_auth_failure_timeout(mac_ctx);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case eLIM_MLM_WT_ASSOC_RSP_STATE:
|
|
|
+ if (tx_timer_running(
|
|
|
+ &lim_timer->gLimAssocFailureTimer)) {
|
|
|
+ pe_debug("Trigger Assoc failure timeout for vdev %d",
|
|
|
+ vdev_id);
|
|
|
+ tx_timer_deactivate(
|
|
|
+ &lim_timer->gLimAssocFailureTimer);
|
|
|
+ lim_process_assoc_failure_timeout(mac_ctx,
|
|
|
+ LIM_ASSOC);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case eLIM_MLM_WT_SAE_AUTH_STATE:
|
|
|
+ if (tx_timer_running(&lim_timer->sae_auth_timer)) {
|
|
|
+ pe_debug("Trigger SAE Auth failure timeout for vdev %d",
|
|
|
+ vdev_id);
|
|
|
+ tx_timer_deactivate(
|
|
|
+ &lim_timer->sae_auth_timer);
|
|
|
+ lim_process_sae_auth_timeout(mac_ctx);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ return;
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
/**
|
|
|
* lim_cleanup_mlm() - This function is called to cleanup
|