qcacld-3.0: Replace blacklist/whitelist for denylist/allowlist

Replace blacklist/whitelist with denylist/allowlist for
blacklist manager component. and replace blm with dlm.

Change-Id: I8dec146d8cb3b61dc891b72bea44704b8ab733fe
CRs-Fixed: 3087575
This commit is contained in:
chunquan
2021-12-15 19:05:20 +08:00
committed by Madan Koyyalamudi
parent 2d84395960
commit 51509a327f
34 changed files with 1161 additions and 1132 deletions

View File

@@ -2045,18 +2045,18 @@ enum roam_reason {
* @timeout: time duration for which the bssid is blacklisted
* @received_time: boot timestamp at which the firmware event was received
* @rssi: rssi value for which the bssid is blacklisted
* @reject_reason: reason to add the BSSID to BLM
* @reject_reason: reason to add the BSSID to DLM
* @original_timeout: original timeout sent by the AP
* @source: Source of adding the BSSID to BLM
* @source: Source of adding the BSSID to DLM
*/
struct roam_blacklist_timeout {
struct qdf_mac_addr bssid;
uint32_t timeout;
qdf_time_t received_time;
int32_t rssi;
enum blm_reject_ap_reason reject_reason;
enum dlm_reject_ap_reason reject_reason;
uint32_t original_timeout;
enum blm_reject_ap_source source;
enum dlm_reject_ap_source source;
};
/*

View File

@@ -2523,8 +2523,8 @@ cm_add_bssid_to_reject_list(struct wlan_objmgr_pdev *pdev,
ap_info.source = entry->source;
ap_info.rssi_reject_params.received_time = entry->received_time;
ap_info.rssi_reject_params.original_timeout = entry->original_timeout;
/* Add this ap info to the rssi reject ap type in blacklist manager */
wlan_blm_add_bssid_to_reject_list(pdev, &ap_info);
/* Add this ap info to the rssi reject ap type in denylist manager */
wlan_dlm_add_bssid_to_reject_list(pdev, &ap_info);
}
QDF_STATUS