瀏覽代碼

qcacld-3.0: Fix filling peer mac in lim_prepare_and_send_deauth

Peer mac is filled from struct wlan_cm_vdev_discon_req, which
can be 0 or previous AP in case of roaming.
While handling disconnect the bssid and peer mac needs to be copied
from pe session for STA mode to avoid this mismatch and thus
disconnect failure.

Peer mac updating from pe session was missed, so to fix the issue
populate the peer mac from pe session.

Change-Id: If0598791887fb6fe46fe6ea238320876f6f57fa9
CRs-Fixed: 3708294
Abhishek Singh 1 年之前
父節點
當前提交
d90518dcbe
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      core/mac/src/pe/lim/lim_process_sme_req_messages.c

+ 1 - 2
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -4790,8 +4790,7 @@ static void lim_prepare_and_send_deauth(struct mac_context *mac_ctx,
 	deauth_req.vdev_id = req->req.vdev_id;
 	qdf_mem_copy(deauth_req.bssid.bytes, pe_session->bssId,
 		     QDF_MAC_ADDR_SIZE);
-	deauth_req.bssid = deauth_req.bssid;
-	deauth_req.peer_macaddr = req->req.bssid;
+	deauth_req.peer_macaddr = deauth_req.bssid;
 	deauth_req.reasonCode = req->req.reason_code;
 
 	msg.bodyptr = &deauth_req;