Jelajahi Sumber

qcacld-3.0: Cleanup pre-auth when start to disconnect

Pre-auth on different channel and started scan, then all scan
cancelled due to disconnect request, which cause command -
WLAN_SER_CMD_PERFORM_PRE_AUTH stuck in serialization active queue till
time out and blocking WLAN_SER_CMD_VDEV_START_BSS.

Change-Id: Ib6fa3c5275cea4b889296d3e1100550b81fb3255
CRs-Fixed: 3021018
Wu Gao 3 tahun lalu
induk
melakukan
75071a2b44
1 mengubah file dengan 13 tambahan dan 0 penghapusan
  1. 13 0
      core/mac/src/pe/lim/lim_utils.c

+ 13 - 0
core/mac/src/pe/lim/lim_utils.c

@@ -555,6 +555,19 @@ void lim_deactivate_timers_for_vdev(struct mac_context *mac_ctx,
 			lim_process_sae_auth_timeout(mac_ctx);
 		}
 		break;
+	case eLIM_MLM_LINK_ESTABLISHED_STATE:
+		if (!pe_session->ftPEContext.ftPreAuthSession)
+			break;
+
+		pe_debug("pre-auth in progress");
+		if (tx_timer_running(&lim_timer->gLimFTPreAuthRspTimer)) {
+			pe_debug("Trigger pre auth timeout for vdev %d",
+				 vdev_id);
+			tx_timer_deactivate(
+				&lim_timer->gLimFTPreAuthRspTimer);
+		}
+		lim_process_ft_preauth_rsp_timeout(mac_ctx);
+		break;
 	default:
 		return;
 	}