瀏覽代碼

qcacld-3.0: Call lim_send_assoc_rsp_mgmt_frame with valid sta ds

If there is a valid sta ds, call lim_send_assoc_rsp_mgmt_frame with
this valid sta ds.

For mlo, we only send assoc response on assoc link, we need sta ds
to drop non assoc link requests in lim_send_assoc_rsp_mgmt_frame.
For mlo if it is non assoc link request and sta ds is not created,
do not call lim_send_assoc_rsp_mgmt_frame.

Change-Id: Ie027221873458e492eabb37c668cd9222e6a2636
CRs-Fixed: 3106406
Bing Sun 3 年之前
父節點
當前提交
23c9d0bb4c
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      core/mac/src/pe/lim/lim_assoc_utils.c

+ 6 - 6
core/mac/src/pe/lim/lim_assoc_utils.c

@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011-2021 The Linux Foundation. All rights reserved.
- * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -700,11 +700,14 @@ lim_reject_association(struct mac_context *mac_ctx, tSirMacAddr peer_addr,
 		}
 	}
 
+	sta_ds = dph_get_hash_entry(mac_ctx, sta_id,
+				    &session_entry->dph.dphHashTable);
+
 	if (delete_sta == false) {
 		lim_send_assoc_rsp_mgmt_frame(
 				mac_ctx,
 				STATUS_AP_UNABLE_TO_HANDLE_NEW_STA,
-				1, peer_addr, sub_type, 0, session_entry,
+				1, peer_addr, sub_type, sta_ds, session_entry,
 				false);
 		pe_warn("received Re/Assoc req when max associated STAs reached from");
 		lim_print_mac_addr(mac_ctx, peer_addr, LOGW);
@@ -713,9 +716,6 @@ lim_reject_association(struct mac_context *mac_ctx, tSirMacAddr peer_addr,
 		return;
 	}
 
-	sta_ds = dph_get_hash_entry(mac_ctx, sta_id,
-		   &session_entry->dph.dphHashTable);
-
 	if (!sta_ds) {
 		pe_err("No STA context, yet rejecting Association");
 		return;
@@ -735,7 +735,7 @@ lim_reject_association(struct mac_context *mac_ctx, tSirMacAddr peer_addr,
 	 * status code to requesting STA.
 	 */
 	lim_send_assoc_rsp_mgmt_frame(mac_ctx, result_code, 0, peer_addr,
-				      sub_type, 0, session_entry, false);
+				      sub_type, sta_ds, session_entry, false);
 
 	if (session_entry->parsedAssocReq[sta_ds->assocId]) {
 		lim_free_assoc_req_frm_buf(