Pārlūkot izejas kodu

qcacmn: Add ref cnt enumeration for new modules

Add ref count debug enumeration for legacy modules.

Change-Id: Id1d4026d65b16c31bf6c131450d5802a5673e09a
CRs-Fixed: 2001058
Selvaraj, Sridhar 8 gadi atpakaļ
vecāks
revīzija
b7bc7e789b
1 mainītis faili ar 9 papildinājumiem un 1 dzēšanām
  1. 9 1
      umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h

+ 9 - 1
umac/cmn_services/obj_mgr/inc/wlan_objmgr_cmn.h

@@ -157,7 +157,11 @@ typedef void (*wlan_objmgr_peer_status_handler)(
  * @WLAN_MLME_NB_ID:            MLME Northbound operations
  * @WLAN_MGMT_SB_ID:            MGMT Northbound operations
  * @WLAN_MGMT_NB_ID:            MGMT Southbound operations
- * @WLAN_REF_ID_MAX:            Max ID, this should be the last one in enum
+ * @WLAN_HDD_ID_OBJ_MGR:        HDD Object Manager operations
+ * @WLAN_OSIF_ID:               New component's OS IF ID
+ * @WLAN_LEGACY_MAC_ID:         Legacy MAC operations
+ * @WLAN_LEGACY_WMA_ID:         Legacy WMA operations
+ * @WLAN_REF_ID_MAX:            Max id used to generate ref count tracking array
  */
 typedef enum {
 	WLAN_OBJMGR_ID      = 0,
@@ -165,6 +169,10 @@ typedef enum {
 	WLAN_MLME_NB_ID     = 2,
 	WLAN_MGMT_SB_ID     = 3,
 	WLAN_MGMT_NB_ID     = 4,
+	WLAN_HDD_ID_OBJ_MGR = 5,
+	WLAN_OSIF_ID        = 6,
+	WLAN_LEGACY_MAC_ID  = 7,
+	WLAN_LEGACY_WMA_ID  = 8,
 	WLAN_REF_ID_MAX,
 } wlan_objmgr_ref_dbgid;