소스 검색

qcacld-3.0: Cache station info correctly

When a station associates to a SAP and SAP registers
the sta info correctly, it tries to cache station info.
Newly added MLO changes breaks this path as if host
driver fails to register MLD sta it does not cache the
station info which is not correct. When user space queries
this information host driver can not find this inforamation
as it is not cached and it does not return this information.

To address this issue, cache the station information if SAP
registers the station correctly irrespective of the MLD sta
registration status.

Change-Id: I1a83d6521b27d36d580067b2628c78d3f1c66f76
CRs-Fixed: 3138429
Ashish 3 년 전
부모
커밋
b565844200
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      core/hdd/src/wlan_hdd_hostapd.c

+ 6 - 4
core/hdd/src/wlan_hdd_hostapd.c

@@ -2410,7 +2410,9 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
 						(struct qdf_mac_addr *)
 						wrqu.addr.sa_data,
 						event);
-			if (!QDF_IS_STATUS_SUCCESS(qdf_status))
+			if (QDF_IS_STATUS_SUCCESS(qdf_status))
+				hdd_fill_station_info(adapter, event);
+			else
 				hdd_err("Failed to register STA %d "
 					QDF_MAC_ADDR_FMT, qdf_status,
 					QDF_MAC_ADDR_REF(wrqu.addr.sa_data));
@@ -2454,7 +2456,9 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
 						(struct qdf_mac_addr *)
 						wrqu.addr.sa_data,
 						event);
-			if (!QDF_IS_STATUS_SUCCESS(qdf_status))
+			if (QDF_IS_STATUS_SUCCESS(qdf_status))
+				hdd_fill_station_info(adapter, event);
+			else
 				hdd_err("Failed to register STA %d "
 					QDF_MAC_ADDR_FMT, qdf_status,
 					QDF_MAC_ADDR_REF(wrqu.addr.sa_data));
@@ -2493,8 +2497,6 @@ QDF_STATUS hdd_hostapd_sap_event_cb(struct sap_event *sap_event,
 		}
 
 		sta_id = event->staId;
-		if (QDF_IS_STATUS_SUCCESS(qdf_status))
-			hdd_fill_station_info(adapter, event);
 
 		if (ucfg_ipa_is_enabled()) {
 			status = ucfg_ipa_wlan_evt(hdd_ctx->pdev,