|
@@ -92,9 +92,6 @@ static inline mac_handle_t MAC_HANDLE(struct mac_context *mac)
|
|
|
#define LIM_BSS_CAPS_SET(cap, val) ((val) |= (LIM_BSS_CAPS_ ## cap))
|
|
|
#define LIM_BSS_CAPS_CLR(cap, val) ((val) &= (~(LIM_BSS_CAPS_ ## cap)))
|
|
|
|
|
|
-/* 40 beacons per heart beat interval is the default + 1 to count the rest */
|
|
|
-#define MAX_NO_BEACONS_PER_HEART_BEAT_INTERVAL 41
|
|
|
-
|
|
|
#define SPACE_ASCII_VALUE 32
|
|
|
|
|
|
#define WLAN_HOST_SEQ_NUM_MIN 2048
|
|
@@ -299,7 +296,7 @@ typedef struct {
|
|
|
void *pMlmDeauthReq;
|
|
|
} tLimDisassocDeauthCnfReq;
|
|
|
|
|
|
-typedef struct sAniSirLim {
|
|
|
+struct lim_context {
|
|
|
/* //////////////////////////////////// TIMER RELATED START /////////////////////////////////////////// */
|
|
|
|
|
|
tLimTimers lim_timers;
|
|
@@ -338,58 +335,12 @@ typedef struct sAniSirLim {
|
|
|
uint16_t maxStation;
|
|
|
uint16_t maxBssId;
|
|
|
|
|
|
- uint32_t gLimNumBeaconsRcvd;
|
|
|
- uint32_t gLimNumBeaconsIgnored;
|
|
|
-
|
|
|
- uint32_t gLimNumDeferredMsgs;
|
|
|
-
|
|
|
/* / Variable to keep track of number of currently associated STAs */
|
|
|
uint16_t gLimNumOfAniSTAs; /* count of ANI peers */
|
|
|
|
|
|
tSirMacAddr gLimHeartBeatApMac[2];
|
|
|
uint8_t gLimHeartBeatApMacIndex;
|
|
|
|
|
|
- /* Statistics to keep track of no. beacons rcvd in heart beat interval */
|
|
|
- uint16_t
|
|
|
- gLimHeartBeatBeaconStats[MAX_NO_BEACONS_PER_HEART_BEAT_INTERVAL];
|
|
|
-
|
|
|
-#ifdef WLAN_DEBUG
|
|
|
- /* Debug counters */
|
|
|
- uint32_t numTot, numBbt, numProtErr, numLearn, numLearnIgnore;
|
|
|
- uint32_t numSme, numMAC[4][16];
|
|
|
-
|
|
|
- /* Debug counter to track number of Assoc Req frame drops */
|
|
|
- /* when received in sta->mlmState other than LINK_ESTABLISED */
|
|
|
- uint32_t gLimNumAssocReqDropInvldState;
|
|
|
- /* counters to track rejection of Assoc Req due to Admission Control */
|
|
|
- uint32_t gLimNumAssocReqDropACRejectTS;
|
|
|
- uint32_t gLimNumAssocReqDropACRejectSta;
|
|
|
- /* Debug counter to track number of Reassoc Req frame drops */
|
|
|
- /* when received in sta->mlmState other than LINK_ESTABLISED */
|
|
|
- uint32_t gLimNumReassocReqDropInvldState;
|
|
|
- /* Debug counter to track number of Hash Miss event that */
|
|
|
- /* will not cause a sending of de-auth/de-associate frame */
|
|
|
- uint32_t gLimNumHashMissIgnored;
|
|
|
-
|
|
|
- /* Debug counter to track number of Beacon frames */
|
|
|
- /* received in unexpected state */
|
|
|
- uint32_t gLimUnexpBcnCnt;
|
|
|
-
|
|
|
- /* Debug counter to track number of Beacon frames */
|
|
|
- /* received in wt-join-state that do have SSID mismatch */
|
|
|
- uint32_t gLimBcnSSIDMismatchCnt;
|
|
|
-
|
|
|
- /* Debug counter to track number of Link establishments on STA/BP */
|
|
|
- uint32_t gLimNumLinkEsts;
|
|
|
-
|
|
|
- /* Debug counter to track number of Rx cleanup */
|
|
|
- uint32_t gLimNumRxCleanup;
|
|
|
-
|
|
|
- /* Debug counter to track different parse problem */
|
|
|
- uint32_t gLim11bStaAssocRejectCount;
|
|
|
-
|
|
|
-#endif
|
|
|
-
|
|
|
/* //////////////////////////////////////// STATS/COUNTER RELATED END /////////////////////////////////////////// */
|
|
|
|
|
|
/* //////////////////////////////////////// STATES RELATED START /////////////////////////////////////////// */
|
|
@@ -650,7 +601,7 @@ typedef struct sAniSirLim {
|
|
|
wlan_scan_requester req_id;
|
|
|
QDF_STATUS (*sme_bcn_rcv_callback)(hdd_handle_t hdd_handle,
|
|
|
struct wlan_beacon_report *beacon_report);
|
|
|
-} tAniSirLim, *tpAniSirLim;
|
|
|
+};
|
|
|
|
|
|
struct mgmt_frm_reg_info {
|
|
|
qdf_list_node_t node; /* MUST be first element */
|
|
@@ -742,7 +693,7 @@ struct mac_context {
|
|
|
enum qdf_driver_type gDriverType;
|
|
|
struct wlan_mlme_chain_cfg fw_chain_cfg;
|
|
|
struct wlan_mlme_cfg *mlme_cfg;
|
|
|
- tAniSirLim lim;
|
|
|
+ struct lim_context lim;
|
|
|
struct sch_context sch;
|
|
|
tAniSirSys sys;
|
|
|
|