qcacmn: Serialize connect and disconnect request

Serialize connect and disconnect request in CM

Change-Id: I7eacafaf2fb1c71d7c42a493d4acb855f399c698
CRs-Fixed: 2750754
Tento commit je obsažen v:
gaurank kathpalia
2020-08-07 10:36:19 +05:30
odevzdal snandini
rodič 6a2f984c06
revize bd6a237677
3 změnil soubory, kde provedl 200 přidání a 3 odebrání

Zobrazit soubor

@@ -268,6 +268,7 @@ typedef void (*wlan_objmgr_peer_status_handler)(
* @WLAN_PKT_CAPTURE_ID Packet capture operations
* @WLAN_DCS_ID: DCS operations
* @WLAN_IOT_SIM_ID: IOT Simulation feature
* @WLAN_MLME_CM_ID Connection Manager reference ID
* @WLAN_REF_ID_MAX: Max id used to generate ref count tracking array
*/
/* New value added to the enum must also be reflected in function
@@ -351,6 +352,7 @@ typedef enum {
WLAN_PKT_CAPTURE_ID = 74,
WLAN_DCS_ID = 75,
WLAN_IOT_SIM_ID = 76,
WLAN_MLME_CM_ID = 77,
WLAN_REF_ID_MAX,
} wlan_objmgr_ref_dbgid;
@@ -440,7 +442,8 @@ static inline const char *string_from_dbgid(wlan_objmgr_ref_dbgid id)
"FTM_TIME_SYNC_ID",
"WLAN_PKT_CAPTURE_ID",
"WLAN_DCS_ID",
"WLAN_IOT_SIM_ID"};
"WLAN_IOT_SIM_ID",
"WLAN_MLME_CM_ID"};
if (id >= WLAN_REF_ID_MAX)
return "Unknown";