Browse Source

qcacld-3.0: Pass mld mac addr correctly when creating peer

Make sure mld mac addr is passed to wma when creating peer obj

Change-Id: I4500033d75edd59255e299174de1c49d09a45422
CRs-Fixed: 3014211
bings 3 years ago
parent
commit
4320b87f57

+ 1 - 1
components/umac/mlme/connection_mgr/core/src/wlan_cm_vdev_connect.c

@@ -1260,7 +1260,7 @@ static void cm_set_peer_mld_info(struct cm_peer_create_req *req,
 				 struct qdf_mac_addr *mld_mac,
 				 bool is_assoc_peer)
 {
-	if (!req) {
+	if (req) {
 		qdf_copy_macaddr(&req->mld_mac, mld_mac);
 		req->is_assoc_peer = is_assoc_peer;
 	}

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

@@ -3948,23 +3948,23 @@ QDF_STATUS cm_process_disconnect_req(struct scheduler_msg *msg)
  * Return: void
  */
 static void wma_get_mld_info_sta(struct cm_peer_create_req *req,
-				 uint8_t *peer_mld_addr,
+				 uint8_t **peer_mld_addr,
 				 bool *is_assoc_peer)
 {
 	if (req) {
-		peer_mld_addr = req->mld_mac.bytes;
+		*peer_mld_addr = req->mld_mac.bytes;
 		*is_assoc_peer = req->is_assoc_peer;
 	} else {
-		peer_mld_addr = NULL;
+		*peer_mld_addr = NULL;
 		*is_assoc_peer = false;
 	}
 }
 #else
 static void wma_get_mld_info_sta(struct cm_peer_create_req *req,
-				 uint8_t *peer_mld_addr,
+				 uint8_t **peer_mld_addr,
 				 bool *is_assoc_peer)
 {
-	peer_mld_addr = NULL;
+	*peer_mld_addr = NULL;
 	*is_assoc_peer = false;
 }
 #endif
@@ -3983,7 +3983,7 @@ QDF_STATUS cm_process_peer_create(struct scheduler_msg *msg)
 
 	req = msg->bodyptr;
 
-	wma_get_mld_info_sta(req, peer_mld_addr, &is_assoc_peer);
+	wma_get_mld_info_sta(req, &peer_mld_addr, &is_assoc_peer);
 	status = wma_add_bss_peer_sta(req->vdev_id, req->peer_mac.bytes, true,
 				      peer_mld_addr, is_assoc_peer);
 

+ 5 - 5
core/wma/src/wma_dev_if.c

@@ -4108,11 +4108,11 @@ send_resp:
  * Return: void
  */
 static void wma_get_mld_info_ap(tpAddStaParams add_sta,
-				uint8_t *peer_mld_addr,
+				uint8_t **peer_mld_addr,
 				bool *is_assoc_peer)
 {
 	if (add_sta) {
-		peer_mld_addr = add_sta->mld_mac_addr;
+		*peer_mld_addr = add_sta->mld_mac_addr;
 		*is_assoc_peer = add_sta->is_assoc_peer;
 	} else {
 		peer_mld_addr = NULL;
@@ -4121,10 +4121,10 @@ static void wma_get_mld_info_ap(tpAddStaParams add_sta,
 }
 #else
 static void wma_get_mld_info_ap(tpAddStaParams add_sta,
-				uint8_t *peer_mld_addr,
+				uint8_t **peer_mld_addr,
 				bool *is_assoc_peer)
 {
-	peer_mld_addr = NULL;
+	*peer_mld_addr = NULL;
 	*is_assoc_peer = false;
 }
 #endif
@@ -4191,7 +4191,7 @@ static void wma_add_sta_req_ap_mode(tp_wma_handle wma, tpAddStaParams add_sta)
 
 	wma_delete_invalid_peer_entries(add_sta->smesessionId, add_sta->staMac);
 
-	wma_get_mld_info_ap(add_sta, peer_mld_addr, &is_assoc_peer);
+	wma_get_mld_info_ap(add_sta, &peer_mld_addr, &is_assoc_peer);
 	status = wma_create_peer(wma, add_sta->staMac, WMI_PEER_TYPE_DEFAULT,
 				 add_sta->smesessionId, peer_mld_addr,
 				 is_assoc_peer);