Эх сурвалжийг харах

qcacld-3.0: Enhancement to RRM measurement

qcacld-2.0 to qcacld-3.0 propagation

Before sending the 11k measurement report, check if there is a
valid scan result or if the measurement is done to send out a
report or cleanup the RRM state machine.

CRs-Fixed: 982133
Change-Id: I3f98450f3d139dd7a7c1548dc80070cf780ada88
Varun Reddy Yeturu 9 жил өмнө
parent
commit
0c1a00baca

+ 12 - 9
core/sme/src/rrm/sme_rrm.c

@@ -475,6 +475,7 @@ static QDF_STATUS sme_rrm_send_scan_result(tpAniSirGlobal mac_ctx,
 	if (filter.SSIDs.SSIDList)
 		qdf_mem_free(filter.SSIDs.SSIDList);
 
+	sms_log(mac_ctx, LOG1, FL("RRM Measurement Done %d"), measurementdone);
 	if (NULL == result_handle) {
 		/*
 		 * no scan results
@@ -540,17 +541,19 @@ static QDF_STATUS sme_rrm_send_scan_result(tpAniSirGlobal mac_ctx,
 	 */
 	sms_log(mac_ctx, LOG1, FL(" Number of BSS Desc with RRM Scan %d "),
 			counter);
+	if (counter || measurementdone) {
 #ifdef FEATURE_WLAN_ESE
-	if (eRRM_MSG_SOURCE_ESE_UPLOAD == rrm_ctx->msgSource)
-		status = sme_ese_send_beacon_req_scan_results(mac_ctx,
-				session_id, chan_list[0],
-				scanresults_arr, measurementdone,
-				counter);
-	else
+		if (eRRM_MSG_SOURCE_ESE_UPLOAD == rrm_ctx->msgSource)
+			status = sme_ese_send_beacon_req_scan_results(mac_ctx,
+					session_id, chan_list[0],
+					scanresults_arr, measurementdone,
+					counter);
+		else
 #endif /* FEATURE_WLAN_ESE */
-		status = sme_rrm_send_beacon_report_xmit_ind(mac_ctx,
-				scanresults_arr, measurementdone,
-				counter);
+			status = sme_rrm_send_beacon_report_xmit_ind(mac_ctx,
+					scanresults_arr, measurementdone,
+					counter);
+	}
 	sme_scan_result_purge(mac_ctx, result_handle);
 	return status;
 }