Jelajahi Sumber

qcacld-3.0: Replace blacklist abbreviation bl for dl

Replace blacklist abbreviation bl for denylist dl.

Change-Id: Ibbefba66f27cde8711c8c171f821cf668ba350ba
CRs-Fixed: 3153291
chunquan 3 tahun lalu
induk
melakukan
8f4ed84d9d

+ 2 - 2
components/denylist_mgr/dispatcher/inc/wlan_dlm_api.h

@@ -92,13 +92,13 @@ wlan_dlm_get_bssid_reject_list(struct wlan_objmgr_pdev *pdev,
 }
 
 /**
- * wlan_dlm_dump_blcklist_bssid() - dump the denylisted BSSIDs from DLM
+ * wlan_dlm_dump_denylist_bssid() - dump the denylisted BSSIDs from DLM
  * @pdev: pdev object
  *
  * Return: None
  */
 static inline void
-wlan_dlm_dump_blcklist_bssid(struct wlan_objmgr_pdev *pdev)
+wlan_dlm_dump_denylist_bssid(struct wlan_objmgr_pdev *pdev)
 {
 	return dlm_dump_denylist_bssid(pdev);
 }

+ 1 - 1
components/denylist_mgr/dispatcher/src/wlan_dlm_ucfg_api.c

@@ -207,7 +207,7 @@ ucfg_dlm_add_userspace_deny_list(struct wlan_objmgr_pdev *pdev,
 void
 ucfg_dlm_dump_deny_list_ap(struct wlan_objmgr_pdev *pdev)
 {
-	return wlan_dlm_dump_blcklist_bssid(pdev);
+	return wlan_dlm_dump_denylist_bssid(pdev);
 }
 
 void

+ 3 - 3
components/umac/mlme/connection_mgr/dispatcher/src/wlan_cm_roam_api.c

@@ -2826,15 +2826,15 @@ cm_stats_log_roam_scan_candidates(struct wmi_roam_candidate_info *ap,
 
 	for (i = 0; i < num_entries; i++) {
 		mlme_get_converted_timestamp(ap->timestamp, time);
-		mlme_get_converted_timestamp(ap->bl_timestamp, time2);
+		mlme_get_converted_timestamp(ap->dl_timestamp, time2);
 		mlme_nofl_info(QDF_MAC_ADDR_FMT " %17s %4d %-4s %4d %3d/%-4d %2d/%-4d %5d %7d %7d %17s %9d",
 			       QDF_MAC_ADDR_REF(ap->bssid.bytes), time,
 			  ap->freq,
 			  ((ap->type == 0) ? "C_AP" :
 			  ((ap->type == 2) ? "R_AP" : "P_AP")),
 			  ap->etp, ap->rssi, ap->rssi_score, ap->cu_load,
-			  ap->cu_score, ap->total_score, ap->bl_reason,
-			  ap->bl_source, time2, ap->bl_original_timeout);
+			  ap->cu_score, ap->total_score, ap->dl_reason,
+			  ap->dl_source, time2, ap->dl_original_timeout);
 		/* Update roam candidates info to userspace */
 		cm_roam_candidate_info_event(ap, i);
 		ap++;

+ 2 - 2
components/wmi/src/wmi_unified_roam_api.c

@@ -385,8 +385,8 @@ wmi_extract_btm_denylist_event(wmi_unified_t wmi_handle,
 			       uint32_t data_len,
 			       struct roam_denylist_event **dst_list)
 {
-	if (wmi_handle->ops->extract_btm_bl_event)
-		return wmi_handle->ops->extract_btm_bl_event(wmi_handle,
+	if (wmi_handle->ops->extract_btm_dl_event)
+		return wmi_handle->ops->extract_btm_dl_event(wmi_handle,
 							     event,
 							     data_len,
 							     dst_list);

+ 1 - 1
components/wmi/src/wmi_unified_roam_tlv.c

@@ -3361,7 +3361,7 @@ void wmi_roam_offload_attach_tlv(wmi_unified_t wmi_handle)
 	ops->extract_roam_sync_event = extract_roam_sync_event_tlv;
 	ops->extract_roam_sync_frame_event = extract_roam_sync_frame_event_tlv;
 	ops->extract_roam_event = extract_roam_event_tlv;
-	ops->extract_btm_bl_event = extract_btm_denylist_event;
+	ops->extract_btm_dl_event = extract_btm_denylist_event;
 	ops->extract_vdev_disconnect_event = extract_vdev_disconnect_event_tlv;
 	ops->extract_roam_scan_chan_list = extract_roam_scan_chan_list_tlv;
 	ops->extract_roam_stats_event = extract_roam_stats_event_tlv;