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

qcacld-3.0: The disconnection_status_lock is not initialized for SAP mode

The mutex disconnection_status_lock is not initialized for SAP mode but
destroyed in hdd_cleanup_adapter.

The fix is intializing this lock when the adapter is opend for all modes.

Change-Id: I906722641482c1ad0bcb89fcfe35ded23a15203e
CRs-Fixed: 2958599
Tiger Yu 3 éve
szülő
commit
942f53bb4f
1 módosított fájl, 5 hozzáadás és 4 törlés
  1. 5 4
      core/hdd/src/wlan_hdd_main.c

+ 5 - 4
core/hdd/src/wlan_hdd_main.c

@@ -6924,10 +6924,6 @@ struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx, uint8_t sessio
 		hdd_nud_init_tracking(adapter);
 		hdd_mic_init_work(adapter);
 
-		/* This is temp ifdef will be removed in near future */
-#ifndef FEATURE_CM_ENABLE
-		qdf_mutex_create(&adapter->disconnection_status_lock);
-#endif
 		hdd_periodic_sta_stats_mutex_create(adapter);
 
 		break;
@@ -7030,6 +7026,11 @@ struct hdd_adapter *hdd_open_adapter(struct hdd_context *hdd_ctx, uint8_t sessio
 	hdd_sta_info_init(&adapter->sta_info_list);
 	hdd_sta_info_init(&adapter->cache_sta_info_list);
 
+	/* This is temp ifdef will be removed in near future */
+#ifndef FEATURE_CM_ENABLE
+	qdf_mutex_create(&adapter->disconnection_status_lock);
+#endif
+
 	for (i = 0; i < NET_DEV_HOLD_ID_MAX; i++)
 		qdf_atomic_init(
 			&adapter->net_dev_hold_ref_count[NET_DEV_HOLD_ID_MAX]);