qcacld-3.0: Remove obsolete wlansap_set_counter_measure()

Change "qcacld-3.0: Remove hdd_softap_tkip_mic_fail_counter_measure()"
removed the only caller of function wlansap_set_counter_measure. Since
this function is now unused and obsolete, remove it.

Change-Id: I6fc7ab24351dca41b22aabf40a82509448c795b0
CRs-Fixed: 2115342
Cette révision appartient à :
Jeff Johnson
2017-09-22 09:24:43 -07:00
révisé par snandini
Parent 326a04f9dd
révision 8d5d7cd3b1
2 fichiers modifiés avec 0 ajouts et 43 suppressions

Voir le fichier

@@ -856,7 +856,6 @@ QDF_STATUS wlansap_set_channel_change_with_csa(void *p_cds_gctx,
uint32_t targetChannel, enum phy_ch_width target_bw, bool strict);
QDF_STATUS wlansap_set_key_sta(void *p_cds_gctx,
tCsrRoamSetKey *pSetKeyInfo);
QDF_STATUS wlansap_set_counter_measure(void *p_cds_gctx, bool bEnable);
QDF_STATUS wlan_sap_getstation_ie_information(void *p_cds_gctx,
uint32_t *pLen, uint8_t *pBuf);
QDF_STATUS wlansap_clear_acl(void *p_cds_gctx);

Voir le fichier

@@ -1673,48 +1673,6 @@ wlansap_set_channel_change_with_csa(void *p_cds_gctx, uint32_t targetChannel,
return QDF_STATUS_SUCCESS;
}
/**
* wlansap_set_counter_measure() - set counter measure.
* @pCtx: Pointer to the global cds context; a handle to SAP's control block
* can be extracted from its context. When MBSSID feature is enabled,
* SAP context is directly passed to SAP APIs.
* @bEnable: If true than all stations will be disassociated and no more
* will be allowed to associate. If false than CORE will come out
* of this state.
*
* This api function is used to disassociate all the stations and prevent
* association for any other station.Whenever Authenticator receives 2 mic
* failures within 60 seconds, Authenticator will enable counter measure at
* SAP Layer. Authenticator will start the 60 seconds timer. Core stack will
* not allow any STA to associate till HDD disables counter meassure. Core
* stack shall kick out all the STA which are currently associated and DIASSOC
* Event will be propogated to HDD for each STA to clean up the HDD STA table.
* Once the 60 seconds timer expires, Authenticator will disable the counter
* meassure at core stack. Now core stack can allow STAs to associate.
*
* Return: The QDF_STATUS code associated with performing the operation
* QDF_STATUS_SUCCESS: Success
*/
QDF_STATUS wlansap_set_counter_measure(void *pCtx, bool bEnable)
{
struct sap_context *pSapCtx = CDS_GET_SAP_CB(pCtx);
/*------------------------------------------------------------------------
Sanity check
Extract SAP control block
------------------------------------------------------------------------*/
if (NULL == pSapCtx) {
QDF_TRACE(QDF_MODULE_ID_SAP, QDF_TRACE_LEVEL_ERROR,
"%s: Invalid SAP pointer from pCtx", __func__);
return QDF_STATUS_E_FAULT;
}
sme_roam_tkip_counter_measures(CDS_GET_HAL_CB(),
pSapCtx->sessionId, bEnable);
return QDF_STATUS_SUCCESS;
}
/**
* wlansap_set_key_sta() - set keys for a stations.
* @pCtx: Pointer to the global cds context; a handle to SAP's control block