qcacmn: Add ref cnt enumeration for new modules

Add ref count debug enumeration for legacy modules.

Change-Id: Id1d4026d65b16c31bf6c131450d5802a5673e09a
CRs-Fixed: 2001058
This commit is contained in:
Selvaraj, Sridhar
2017-02-13 13:23:30 +05:30
committed by qcabuildsw
orang tua 2f8f8b5add
melakukan b7bc7e789b

Melihat File

@@ -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;