Browse Source

qcacld-3.0: Gen ML probe using assoc rsp for MLO

Host tried to associate to AP, 6 GHz link is selected as
the assoc link and in the RNR there are two partner links 5 GHz, 2.4 GHz.
Only 6 GHz/2.4 GHz are beaconing and 5 GHz is not beaconing.

STA sent the ML-Probe request on 6 GHz link requesting the full profile
for the 5 GHz and 2.4 GHz links but AP responded with only one partner
link 2.4 GHz, from this we generated 2.4 GHz and added to scan cache,
AP didn't respond with 5 GHz link in per-sta.

STA sent the assoc request over 3-links and AP accepted the assoc,
and association is successful over 3-link and the same is intimated
to the firmware that 3link association is successful.

But while sending the connection information to the kernel 5 GHz link
is not found resulting in HDD/Kernel not being aware of the 5 GHz link.

Fix :- Use assoc response from the ML AP to generate ML probe resp
for the partner links to add to scan DB so that partner link
VDEV will have candidate to start connection.

Change-Id: I30176e58d9b02e7ed275b1c926cd1e119b66f8f3
CRs-Fixed: 3686809
Aasir Rasheed 1 year ago
parent
commit
2c46ecc81f

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

@@ -1163,7 +1163,7 @@ set_partner_info_for_2link_sap(struct scan_cache_entry *scan_entry,
 #endif
 
 static void
-cm_check_nontx_mbssid_partner_entries(struct cm_connect_req *conn_req)
+cm_check_ml_missing_partner_entries(struct cm_connect_req *conn_req)
 {
 	uint8_t idx;
 	struct scan_cache_entry *entry, *partner_entry;
@@ -1178,15 +1178,9 @@ cm_check_nontx_mbssid_partner_entries(struct cm_connect_req *conn_req)
 	 * If the entry is not one of following, return gracefully:
 	 *   -AP is not ML type
 	 *   -AP is SLO
-	 *   -AP is not a member of MBSSID set
-	 *   -AP BSSID equals to TxBSSID in MBSSID set
 	 */
-	if (!mld_addr || !entry->ml_info.num_links ||
-	    !entry->mbssid_info.profile_num ||
-	    !qdf_mem_cmp(entry->mbssid_info.trans_bssid, &entry->bssid,
-			 QDF_MAC_ADDR_SIZE)) {
+	if (!mld_addr || !entry->ml_info.num_links)
 		return;
-	}
 
 	for (idx = 0; idx < entry->ml_info.num_links; idx++) {
 		if (!entry->ml_info.link_info[idx].is_valid_link)
@@ -1271,7 +1265,7 @@ cm_get_ml_partner_info(struct wlan_objmgr_pdev *pdev,
 	mlme_debug("sta and ap intersect num of partner link: %d", j);
 
 	set_partner_info_for_2link_sap(scan_entry, partner_info);
-	cm_check_nontx_mbssid_partner_entries(conn_req);
+	cm_check_ml_missing_partner_entries(conn_req);
 
 	return QDF_STATUS_SUCCESS;
 }