qcacld-3.0: Indicate assoc req to son

Indicate assoc req frame to son

Change-Id: Ic5779011cc248ad6fc8b341170b64ac45a1d5a9c
CRs-Fixed: 3043011
This commit is contained in:
bings
2021-07-29 16:10:10 +08:00
committed by Madan Koyyalamudi
parent db6b10f50f
commit 6921a0560c
3 changed files with 73 additions and 0 deletions

View File

@@ -268,3 +268,47 @@ bool wlan_son_peer_is_kickout_allow(struct wlan_objmgr_vdev *vdev,
return kickout_allow;
}
void wlan_son_ind_assoc_req_frm(struct wlan_objmgr_vdev *vdev,
uint8_t *macaddr, bool is_reassoc,
uint8_t *frame, uint16_t frame_len,
QDF_STATUS status)
{
struct wlan_objmgr_peer *peer;
struct wlan_lmac_if_rx_ops *rx_ops;
struct wlan_objmgr_psoc *psoc;
uint16_t assocstatus = IEEE80211_STATUS_UNSPECIFIED;
uint16_t sub_type = IEEE80211_FC0_SUBTYPE_ASSOC_REQ;
if (!vdev) {
qdf_err("invalid vdev");
return;
}
psoc = wlan_vdev_get_psoc(vdev);
if (!psoc) {
qdf_err("invalid psoc");
return;
}
rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
if (!rx_ops || !rx_ops->son_rx_ops.process_mgmt_frame) {
qdf_err("invalid rx ops");
return;
}
peer = wlan_objmgr_get_peer_by_mac(psoc, macaddr,
WLAN_SON_ID);
if (!peer) {
qdf_err("peer is null");
return;
}
if (is_reassoc)
sub_type = IEEE80211_FC0_SUBTYPE_REASSOC_REQ;
if (QDF_IS_STATUS_SUCCESS(status))
assocstatus = IEEE80211_STATUS_SUCCESS;
qdf_debug("subtype %u frame_len %u assocstatus %u",
sub_type, frame_len, assocstatus);
rx_ops->son_rx_ops.process_mgmt_frame(vdev, peer, sub_type,
frame, frame_len,
&assocstatus);
wlan_objmgr_peer_release_ref(peer, WLAN_SON_ID);
}