|
@@ -44,7 +44,7 @@
|
|
|
static QDF_STATUS lim_add_ndi_peer(tpAniSirGlobal mac_ctx,
|
|
|
uint32_t vdev_id, struct qdf_mac_addr peer_mac_addr)
|
|
|
{
|
|
|
- tpPESession session;
|
|
|
+ struct pe_session *session;
|
|
|
tpDphHashNode sta_ds;
|
|
|
uint16_t assoc_id, peer_idx;
|
|
|
QDF_STATUS status;
|
|
@@ -125,7 +125,7 @@ QDF_STATUS lim_add_ndi_peer_converged(uint32_t vdev_id,
|
|
|
static void lim_ndp_delete_peer_by_addr(tpAniSirGlobal mac_ctx, uint8_t vdev_id,
|
|
|
struct qdf_mac_addr peer_ndi_mac_addr)
|
|
|
{
|
|
|
- tpPESession session;
|
|
|
+ struct pe_session *session;
|
|
|
tpDphHashNode sta_ds;
|
|
|
uint16_t peer_idx;
|
|
|
uint8_t zero_mac_addr[QDF_MAC_ADDR_SIZE] = { 0, 0, 0, 0, 0, 0 };
|
|
@@ -190,7 +190,7 @@ static void lim_ndp_delete_peers(tpAniSirGlobal mac_ctx,
|
|
|
tpDphHashNode sta_ds = NULL;
|
|
|
uint16_t deleted_num = 0;
|
|
|
int i, j;
|
|
|
- tpPESession session;
|
|
|
+ struct pe_session *session;
|
|
|
struct qdf_mac_addr *deleted_peers;
|
|
|
uint16_t peer_idx;
|
|
|
bool found;
|
|
@@ -276,7 +276,7 @@ void lim_ndp_delete_peers_converged(struct peer_nan_datapath_map *ndp_map,
|
|
|
*/
|
|
|
void lim_process_ndi_del_sta_rsp(tpAniSirGlobal mac_ctx,
|
|
|
struct scheduler_msg *lim_msg,
|
|
|
- tpPESession pe_session)
|
|
|
+ struct pe_session *pe_session)
|
|
|
{
|
|
|
tpDphHashNode sta_ds;
|
|
|
tpDeleteStaParams del_sta_params = (tpDeleteStaParams) lim_msg->bodyptr;
|
|
@@ -346,7 +346,7 @@ skip_event:
|
|
|
*/
|
|
|
void lim_process_ndi_mlm_add_bss_rsp(tpAniSirGlobal mac_ctx,
|
|
|
struct scheduler_msg *lim_msgq,
|
|
|
- tpPESession session_entry)
|
|
|
+ struct pe_session *session_entry)
|
|
|
{
|
|
|
tLimMlmStartCnf mlm_start_cnf;
|
|
|
tpAddBssParams add_bss_params = (tpAddBssParams) lim_msgq->bodyptr;
|
|
@@ -393,7 +393,7 @@ end:
|
|
|
* Return: None
|
|
|
*/
|
|
|
void lim_ndi_del_bss_rsp(tpAniSirGlobal mac_ctx,
|
|
|
- void *msg, tpPESession session_entry)
|
|
|
+ void *msg, struct pe_session *session_entry)
|
|
|
{
|
|
|
tSirResultCodes rc = eSIR_SME_SUCCESS;
|
|
|
tpDeleteBssParams del_bss = (tpDeleteBssParams) msg;
|
|
@@ -442,7 +442,7 @@ end:
|
|
|
}
|
|
|
|
|
|
static QDF_STATUS lim_send_sme_ndp_add_sta_rsp(tpAniSirGlobal mac_ctx,
|
|
|
- tpPESession session,
|
|
|
+ struct pe_session *session,
|
|
|
tAddStaParams *add_sta_rsp)
|
|
|
{
|
|
|
struct nan_datapath_peer_ind *new_peer_ind;
|
|
@@ -491,7 +491,7 @@ static QDF_STATUS lim_send_sme_ndp_add_sta_rsp(tpAniSirGlobal mac_ctx,
|
|
|
*
|
|
|
* Return: None
|
|
|
*/
|
|
|
-void lim_ndp_add_sta_rsp(tpAniSirGlobal mac_ctx, tpPESession session,
|
|
|
+void lim_ndp_add_sta_rsp(tpAniSirGlobal mac_ctx, struct pe_session *session,
|
|
|
tAddStaParams *add_sta_rsp)
|
|
|
{
|
|
|
tpDphHashNode sta_ds;
|