Forráskód Böngészése

qcacld-3.0: Update MBSSID info during roam/link switch

The MBSSID info needs to updated to the firmware during
every VDEV UP. In current implementation, the MBSSID info
is not updated after roaming. Therefore, upon vdev restart
happens, host will sends stale entries to the firmware in
the VDEV UP command.

To fix this, update the mbssid info during roaming and link
switch in the vdev and use this for the VDEV UP updates.

Change-Id: I65d9cd2ce830a4fbbfde5f20d22c4b0df97055ec
CRs-Fixed: 3640372
Surya Prakash Sivaraj 1 éve
szülő
commit
bf327ecf74
2 módosított fájl, 24 hozzáadás és 0 törlés
  1. 8 0
      core/mac/src/pe/lim/lim_session.c
  2. 16 0
      core/sme/src/csr/csr_api_roam.c

+ 8 - 0
core/mac/src/pe/lim/lim_session.c

@@ -824,6 +824,13 @@ static void lim_clear_pmfcomeback_timer(struct pe_session *session)
 	session->pmf_retry_timer_info.retried = false;
 }
 
+static void lim_clear_mbssid_info(struct wlan_objmgr_vdev *vdev)
+{
+	struct scan_mbssid_info mbssid_info = {0};
+
+	mlme_set_mbssid_info(vdev, &mbssid_info);
+}
+
 /**
  * pe_delete_session() - deletes the PE session given the session ID.
  * @mac_ctx: pointer to global adapter context
@@ -853,6 +860,7 @@ void pe_delete_session(struct mac_context *mac_ctx, struct pe_session *session)
 	lim_reset_bcn_probe_filter(mac_ctx, session);
 	lim_sae_auth_cleanup_retry(mac_ctx, session->vdev_id);
 	lim_cleanup_power_change(mac_ctx, session);
+	lim_clear_mbssid_info(session->vdev);
 
 	/* Restore default failure timeout */
 	if (session->defaultAuthFailureTimeout) {

+ 16 - 0
core/sme/src/csr/csr_api_roam.c

@@ -5425,6 +5425,18 @@ csr_update_beacon_in_connect_rsp(struct scan_cache_entry *entry,
 		     connect_ies->bcn_probe_rsp.len);
 }
 
+#ifdef WLAN_FEATURE_11BE_MLO_ADV_FEATURE
+static bool csr_is_link_switch_in_progress(struct wlan_objmgr_vdev *vdev)
+{
+	return mlo_mgr_is_link_switch_in_progress(vdev);
+}
+#else
+static bool csr_is_link_switch_in_progress(struct wlan_objmgr_vdev *vdev)
+{
+	return false;
+}
+#endif
+
 static void csr_fill_connected_profile(struct mac_context *mac_ctx,
 				       struct csr_roam_session *session,
 				       struct wlan_objmgr_vdev *vdev,
@@ -5514,6 +5526,10 @@ static void csr_fill_connected_profile(struct mac_context *mac_ctx,
 		csr_qos_send_assoc_ind(mac_ctx, vdev_id, &assoc_info);
 	}
 
+	if (rsp->connect_rsp.is_reassoc ||
+	    csr_is_link_switch_in_progress(vdev))
+		mlme_set_mbssid_info(vdev, &cur_node->entry->mbssid_info);
+
 	if (bcn_ies->Country.present)
 		qdf_mem_copy(country_code, bcn_ies->Country.country,
 			     REG_ALPHA2_LEN + 1);