Forráskód Böngészése

qcacld-3.0: Cleanup MLM state machine in pe_close

Currently host cleans up lim timers in lim_cleanup_mlm
before scheduler_disable is called, so if scheduler schedules
scheduler_qdf_mc_timer_callback_t_wrapper before
lim_cleanup_mlm and this callback is executed before
scheduler_disable then host will try to start an
uninitialized timer.
To address this issue call lim_cleanup_mlm from pe_close
as pe_close is called after scheduler disable.

CRs-Fixed: 3652261
Change-Id: I25dff68d3e9b1eeb9a93bd5582cf379dedab71e7
Asutosh Mohapatra 1 éve
szülő
commit
9e68a0a819
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      core/mac/src/pe/lim/lim_api.c

+ 1 - 1
core/mac/src/pe/lim/lim_api.c

@@ -908,6 +908,7 @@ QDF_STATUS pe_close(struct mac_context *mac)
 		return QDF_STATUS_SUCCESS;
 
 	qdf_hang_event_unregister_notifier(&pe_hang_event_notifier);
+	lim_cleanup_mlm(mac);
 	lim_cleanup(mac);
 	lim_unregister_scan_mbssid_callback(mac);
 	lim_unregister_sap_bcn_callback(mac);
@@ -974,7 +975,6 @@ QDF_STATUS pe_start(struct mac_context *mac)
 
 void pe_stop(struct mac_context *mac)
 {
-	lim_cleanup_mlm(mac);
 	pe_debug(" PE STOP: Set LIM state to eLIM_MLM_OFFLINE_STATE");
 	SET_LIM_MLM_STATE(mac, eLIM_MLM_OFFLINE_STATE);
 	return;