|
@@ -660,45 +660,6 @@ static bool csr_neighbor_roam_is_ssid_and_security_match(struct mac_context *mac
|
|
|
|
|
|
}
|
|
|
|
|
|
-bool csr_neighbor_roam_is_new_connected_profile(struct mac_context *mac,
|
|
|
- uint8_t sessionId)
|
|
|
-{
|
|
|
- tpCsrNeighborRoamControlInfo pNeighborRoamInfo =
|
|
|
- &mac->roam.neighborRoamInfo[sessionId];
|
|
|
- tCsrRoamConnectedProfile *pCurrProfile = NULL;
|
|
|
- tCsrRoamConnectedProfile *pPrevProfile = NULL;
|
|
|
- tDot11fBeaconIEs *pIes = NULL;
|
|
|
- struct bss_description *bss_desc = NULL;
|
|
|
- bool fNew = true;
|
|
|
-
|
|
|
- if (!(mac->roam.roamSession && CSR_IS_SESSION_VALID(mac, sessionId)))
|
|
|
- return fNew;
|
|
|
-
|
|
|
- pCurrProfile = &mac->roam.roamSession[sessionId].connectedProfile;
|
|
|
- if (!pCurrProfile)
|
|
|
- return fNew;
|
|
|
-
|
|
|
- pPrevProfile = &pNeighborRoamInfo->prevConnProfile;
|
|
|
- if (!pPrevProfile)
|
|
|
- return fNew;
|
|
|
-
|
|
|
- bss_desc = pPrevProfile->bss_desc;
|
|
|
- if (bss_desc) {
|
|
|
- if (QDF_IS_STATUS_SUCCESS(
|
|
|
- csr_get_parsed_bss_description_ies(mac, bss_desc, &pIes))
|
|
|
- && csr_neighbor_roam_is_ssid_and_security_match(mac,
|
|
|
- pCurrProfile, bss_desc, pIes, sessionId)) {
|
|
|
- fNew = false;
|
|
|
- }
|
|
|
- if (pIes)
|
|
|
- qdf_mem_free(pIes);
|
|
|
- }
|
|
|
-
|
|
|
- sme_debug("roam profile match: %d", !fNew);
|
|
|
-
|
|
|
- return fNew;
|
|
|
-}
|
|
|
-
|
|
|
bool csr_neighbor_roam_connected_profile_match(struct mac_context *mac,
|
|
|
uint8_t sessionId,
|
|
|
struct tag_csrscan_result
|