|
@@ -378,46 +378,15 @@ QDF_STATUS lim_del_sta_all(struct mac_context *mac,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * lim_cleanup_rx_path()
|
|
|
- *
|
|
|
- ***FUNCTION:
|
|
|
- * This function is called to cleanup STA state at SP & RFP.
|
|
|
- *
|
|
|
- ***LOGIC:
|
|
|
- * To circumvent RFP's handling of dummy packet when it does not
|
|
|
- * have an incomplete packet for the STA to be deleted, a packet
|
|
|
- * with 'more framgents' bit set will be queued to RFP's WQ before
|
|
|
- * queuing 'dummy packet'.
|
|
|
- * A 'dummy' BD is pushed into RFP's WQ with type=00, subtype=1010
|
|
|
- * (Disassociation frame) and routing flags in BD set to eCPU's
|
|
|
- * Low Priority WQ.
|
|
|
- * RFP cleans up its local context for the STA id mentioned in the
|
|
|
- * BD and then pushes BD to eCPU's low priority WQ.
|
|
|
- *
|
|
|
- ***ASSUMPTIONS:
|
|
|
- * NA
|
|
|
- *
|
|
|
- ***NOTE:
|
|
|
- * NA
|
|
|
- *
|
|
|
- * @param mac Pointer to Global MAC structure
|
|
|
- * @param sta Pointer to the per STA data structure
|
|
|
- * initialized by LIM and maintained at DPH
|
|
|
- *
|
|
|
- * @return None
|
|
|
- */
|
|
|
-
|
|
|
QDF_STATUS
|
|
|
lim_cleanup_rx_path(struct mac_context *mac, tpDphHashNode sta,
|
|
|
- struct pe_session *pe_session)
|
|
|
+ struct pe_session *pe_session, bool delete_peer)
|
|
|
{
|
|
|
QDF_STATUS retCode = QDF_STATUS_SUCCESS;
|
|
|
|
|
|
- pe_debug("Cleanup Rx Path for AID: %d"
|
|
|
- "pe_session->limSmeState: %d, mlmState: %d",
|
|
|
- sta->assocId, pe_session->limSmeState,
|
|
|
- sta->mlmStaContext.mlmState);
|
|
|
+ pe_debug("Cleanup Rx Path for AID: %d limSmeState: %d, mlmState: %d, delete_peer %d",
|
|
|
+ sta->assocId, pe_session->limSmeState,
|
|
|
+ sta->mlmStaContext.mlmState, delete_peer);
|
|
|
|
|
|
pe_session->isCiscoVendorAP = false;
|
|
|
|
|
@@ -461,7 +430,7 @@ lim_cleanup_rx_path(struct mac_context *mac, tpDphHashNode sta,
|
|
|
sta->valid = 0;
|
|
|
lim_send_sme_tsm_ie_ind(mac, pe_session, 0, 0, 0);
|
|
|
/* Any roaming related changes should be above this line */
|
|
|
- if (lim_is_roam_synch_in_progress(mac->psoc, pe_session))
|
|
|
+ if (!delete_peer)
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
|
|
|
sta->mlmStaContext.mlmState = eLIM_MLM_WT_DEL_STA_RSP_STATE;
|
|
@@ -743,7 +712,7 @@ lim_reject_association(struct mac_context *mac_ctx, tSirMacAddr peer_addr,
|
|
|
sta_ds->mlmStaContext.cleanupTrigger = eLIM_REASSOC_REJECT;
|
|
|
|
|
|
/* Receive path cleanup */
|
|
|
- lim_cleanup_rx_path(mac_ctx, sta_ds, session_entry);
|
|
|
+ lim_cleanup_rx_path(mac_ctx, sta_ds, session_entry, true);
|
|
|
|
|
|
/*
|
|
|
* Send Re/Association Response with
|