qcacld-3.0: components: umac: Fix misspellings
Fix misspellings in components/umac/... Change-Id: I6464cb4708ffa099987e086edcd6852b681f6003 CRs-Fixed: 3303632
This commit is contained in:

committed by
Madan Koyyalamudi

parent
855c5e96f8
commit
fe99b99d11
@@ -1,5 +1,6 @@
|
||||
/*
|
||||
* Copyright (c) 2021 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
* purpose with or without fee is hereby granted, provided that the above
|
||||
@@ -62,7 +63,7 @@ static QDF_STATUS cm_get_valid_preauth_candidate(struct cm_roam_req *cm_req)
|
||||
|
||||
if (new_candidate) {
|
||||
if (!cur_node) {
|
||||
mlme_debug(CM_PREFIX_FMT "All canidate tried",
|
||||
mlme_debug(CM_PREFIX_FMT "All candidates tried",
|
||||
CM_PREFIX_REF(vdev_id, cm_req->cm_id));
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
@@ -62,7 +62,7 @@ QDF_STATUS cm_fw_roam_sync_req(struct wlan_objmgr_psoc *psoc, uint8_t vdev_id,
|
||||
}
|
||||
|
||||
if (cm_is_vdev_connecting(vdev) || cm_is_vdev_disconnecting(vdev)) {
|
||||
mlme_err("vdev %d Roam sync not handled in conneting/disconneting state",
|
||||
mlme_err("vdev %d Roam sync not handled in connecting/disconnecting state",
|
||||
vdev_id);
|
||||
wlan_objmgr_vdev_release_ref(vdev, WLAN_MLME_SB_ID);
|
||||
return cm_roam_stop_req(psoc, vdev_id,
|
||||
@@ -880,7 +880,7 @@ cm_fw_roam_sync_propagation(struct wlan_objmgr_psoc *psoc, uint8_t vdev_id,
|
||||
|
||||
cm_process_roam_keys(vdev, rsp, cm_id);
|
||||
/*
|
||||
* Re-enable the disabled link on roaming as desision
|
||||
* Re-enable the disabled link on roaming as decision
|
||||
* will be taken again to disable the link on roam sync completion.
|
||||
*/
|
||||
if (wlan_vdev_mlme_is_mlo_vdev(vdev))
|
||||
|
@@ -42,7 +42,7 @@
|
||||
*
|
||||
* This function adds dummy blocking command with high priority to avoid
|
||||
* any other vdev command till roam is completed.Any NB operations will be
|
||||
* blocked in serailization until roam logic completes execution.
|
||||
* blocked in serialization until roam logic completes execution.
|
||||
*
|
||||
* Return: QDF_STATUS
|
||||
*/
|
||||
|
@@ -3363,7 +3363,7 @@ cm_roam_fill_per_roam_request(struct wlan_objmgr_psoc *psoc,
|
||||
req->per_config.min_candidate_rssi =
|
||||
mlme_obj->cfg.lfr.per_roam_min_candidate_rssi;
|
||||
|
||||
mlme_debug("PER based roaming configuaration enable: %d vdev: %d high_rate_thresh: %d low_rate_thresh: %d rate_thresh_percnt: %d per_rest_time: %d monitor_time: %d min cand rssi: %d",
|
||||
mlme_debug("PER based roaming configuration enable: %d vdev: %d high_rate_thresh: %d low_rate_thresh: %d rate_thresh_percnt: %d per_rest_time: %d monitor_time: %d min cand rssi: %d",
|
||||
req->per_config.enable, req->vdev_id,
|
||||
req->per_config.tx_high_rate_thresh,
|
||||
req->per_config.tx_low_rate_thresh,
|
||||
@@ -4128,7 +4128,7 @@ cm_roam_switch_to_rso_enable(struct wlan_objmgr_pdev *pdev,
|
||||
}
|
||||
|
||||
if (control_bitmap) {
|
||||
mlme_debug("ROAM: RSO Disabled internaly: vdev[%d] bitmap[0x%x]",
|
||||
mlme_debug("ROAM: RSO Disabled internally: vdev[%d] bitmap[0x%x]",
|
||||
vdev_id, control_bitmap);
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
@@ -5515,7 +5515,7 @@ QDF_STATUS cm_start_roam_invoke(struct wlan_objmgr_psoc *psoc,
|
||||
roam_control_bitmap = mlme_get_operations_bitmap(psoc, vdev_id);
|
||||
if (roam_offload_enabled && (roam_control_bitmap ||
|
||||
!MLME_IS_ROAM_INITIALIZED(psoc, vdev_id))) {
|
||||
mlme_debug("ROAM: RSO Disabled internaly: vdev[%d] bitmap[0x%x]",
|
||||
mlme_debug("ROAM: RSO Disabled internally: vdev[%d] bitmap[0x%x]",
|
||||
vdev_id, roam_control_bitmap);
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
@@ -5928,7 +5928,7 @@ void cm_roam_result_info_event(struct wlan_objmgr_psoc *psoc,
|
||||
* 2. Atleast one candidate AP found during scan
|
||||
*
|
||||
* Print NO_ROAM only if:
|
||||
* 1. No candidate AP found(eventhough other APs are found in scan)
|
||||
* 1. No candidate AP found(even though other APs are found in scan)
|
||||
*/
|
||||
wlan_diag_event.is_roam_successful = (res->status == 0) ||
|
||||
(ap_found_in_roam_scan &&
|
||||
@@ -6216,7 +6216,7 @@ void cm_roam_result_info_event(struct wlan_objmgr_psoc *psoc,
|
||||
* 2. Atleast one candidate AP found during scan
|
||||
*
|
||||
* Print NO_ROAM only if:
|
||||
* 1. No candidate AP found(eventhough other APs are found in scan)
|
||||
* 1. No candidate AP found(even though other APs are found in scan)
|
||||
*/
|
||||
log_record->roam_result.is_roam_successful =
|
||||
(res->status == 0) ||
|
||||
|
@@ -282,7 +282,7 @@ void cm_csr_set_idle(uint8_t vdev_id);
|
||||
* @pdev: Pointer to pdev
|
||||
* @bssid: bssid to get rssi and snr
|
||||
* @rssi: pointer to fill rssi
|
||||
* @snr: poiter to fill snr
|
||||
* @snr: pointer to fill snr
|
||||
*
|
||||
* Return: none
|
||||
*/
|
||||
|
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* DOC: Implements leagcy disconnect connect specific APIs of
|
||||
* DOC: Implements legacy disconnect connect specific APIs of
|
||||
* connection mgr to initiate vdev manager operations
|
||||
*/
|
||||
|
||||
|
@@ -486,7 +486,7 @@ struct owe_transition_mode_info {
|
||||
* ROAM_TRIGGER_REASON_PER, ROAM_TRIGGER_REASON_BMISS
|
||||
* @cfg_param: per vdev config params
|
||||
* @assoc_ie: assoc IE
|
||||
* @prev_ap_bcn_ie: last connetced AP ie
|
||||
* @prev_ap_bcn_ie: last connected AP ie
|
||||
* @occupied_chan_lst: occupied channel list
|
||||
* @roam_candidate_count: candidate count
|
||||
* @is_ese_assoc: is ese assoc
|
||||
@@ -575,7 +575,7 @@ enum sta_roam_policy_dfs_mode {
|
||||
* struct rso_roam_policy_params - sta roam policy params for station
|
||||
* @dfs_mode: tell is DFS channels needs to be skipped while scanning
|
||||
* @skip_unsafe_channels: tells if unsafe channels needs to be skip in scanning
|
||||
* @sap_operating_band: Opearting band for SAP
|
||||
* @sap_operating_band: Operating band for SAP
|
||||
*/
|
||||
struct rso_roam_policy_params {
|
||||
enum sta_roam_policy_dfs_mode dfs_mode;
|
||||
@@ -644,7 +644,7 @@ struct rso_config_params {
|
||||
* @NEIGHBOR_SCAN_PERIOD: neighbour scan period
|
||||
* @ROAM_CONFIG_ENABLE: Roam config enable
|
||||
* @ROAM_PREFERRED_CHAN: preferred channel list
|
||||
* @ROAM_SPECIFIC_CHAN: spedific channel list
|
||||
* @ROAM_SPECIFIC_CHAN: specific channel list
|
||||
* @ROAM_RSSI_DIFF: rssi diff
|
||||
* @NEIGHBOUR_LOOKUP_THRESHOLD: lookup threshold
|
||||
* @SCAN_N_PROBE: scan n probe
|
||||
@@ -693,7 +693,7 @@ enum roam_cfg_param {
|
||||
|
||||
/**
|
||||
* enum roam_offload_init_flags - Flags sent in Roam offload initialization.
|
||||
* @WLAN_ROAM_FW_OFFLOAD_ENABLE: Init roaming module at firwmare
|
||||
* @WLAN_ROAM_FW_OFFLOAD_ENABLE: Init roaming module at firmware
|
||||
* @WLAN_ROAM_BMISS_FINAL_SCAN_ENABLE: Enable partial scan after final beacon
|
||||
* miss event at firmware
|
||||
* @WLAN_ROAM_SKIP_EAPOL_4WAY_HANDSHAKE: Disable 4 Way-HS offload to firmware
|
||||
@@ -753,8 +753,8 @@ struct wlan_cm_roam_vendor_btm_params {
|
||||
* struct ap_profile - Structure ap profile to match candidate
|
||||
* @flags: flags
|
||||
* @rssi_threshold: the value of the the candidate AP should higher by this
|
||||
* threshold than the rssi of the currrently associated AP
|
||||
* @ssid: ssid vlaue to be matched
|
||||
* threshold than the rssi of the currently associated AP
|
||||
* @ssid: ssid value to be matched
|
||||
* @rsn_authmode: security params to be matched
|
||||
* @rsn_ucastcipherset: unicast cipher set
|
||||
* @rsn_mcastcipherset: mcast/group cipher set
|
||||
@@ -1314,11 +1314,11 @@ struct wlan_roam_fils_params {
|
||||
* one VDEV is active
|
||||
* @max_rest_time: max rest time in msec on the BSS channel,only valid if
|
||||
* at least one VDEV is active
|
||||
* @probe_spacing_time: time in msec between 2 consequetive probe requests with
|
||||
* @probe_spacing_time: time in msec between 2 consecutive probe requests with
|
||||
* in a set
|
||||
* @probe_delay: delay in msec before sending first probe request after
|
||||
* switching to a channel
|
||||
* @repeat_probe_time: time in msec between 2 consequetive probe requests within
|
||||
* @repeat_probe_time: time in msec between 2 consecutive probe requests within
|
||||
* a set
|
||||
* @max_scan_time: maximum time in msec allowed for scan
|
||||
* @idle_time: data inactivity time in msec on bss channel that will be used by
|
||||
@@ -1918,8 +1918,8 @@ struct roam_btm_response_data {
|
||||
* struct roam_initial_data - Roam initial related data
|
||||
* @present: Flag to check if the roam btm_rsp tlv is present
|
||||
* @roam_full_scan_count: Roam full scan count
|
||||
* @rssi_th: RSSI threhold
|
||||
* @cu_th: Channel utilization threhold
|
||||
* @rssi_th: RSSI threshold
|
||||
* @cu_th: Channel utilization threshold
|
||||
* @fw_cancel_timer_bitmap: FW timers, which are getting cancelled
|
||||
*/
|
||||
struct roam_initial_data {
|
||||
@@ -2052,7 +2052,7 @@ struct set_pcl_req {
|
||||
* @target_bssid: target mac address
|
||||
* @ch_freq: channel frequency
|
||||
* @frame_len: frame length, includs mac header, fixed params and ies
|
||||
* @frame_buf: buffer contaning probe response or beacon
|
||||
* @frame_buf: buffer containing probe response or beacon
|
||||
* @is_same_bssid: flag to indicate if roaming is requested for same bssid
|
||||
* @forced_roaming: Roam to any bssid in any ch (here bssid & ch is not given)
|
||||
*/
|
||||
@@ -2296,8 +2296,8 @@ struct roam_stats_event {
|
||||
/*
|
||||
* struct auth_offload_event - offload data carried by roam event
|
||||
* @vdev_id: vdev id
|
||||
* @ap_bssid: SAE authentication offload AP MAC Addess
|
||||
* @ta: SAE authentication offload Tx MAC Addess
|
||||
* @ap_bssid: SAE authentication offload AP MAC Address
|
||||
* @ta: SAE authentication offload Tx MAC Address
|
||||
*/
|
||||
struct auth_offload_event {
|
||||
uint8_t vdev_id;
|
||||
@@ -2400,7 +2400,7 @@ enum roam_scan_freq_scheme {
|
||||
* struct wlan_cm_vendor_handoff_param - vendor handoff configuration
|
||||
* structure
|
||||
* @vendor_handoff_context_cb: vendor handoff context
|
||||
* @req_in_progress: to check whether vendor handoff reqest in progress or not
|
||||
* @req_in_progress: to check whether vendor handoff request in progress or not
|
||||
*/
|
||||
struct wlan_cm_vendor_handoff_param {
|
||||
void *vendor_handoff_context;
|
||||
@@ -2450,7 +2450,7 @@ struct cm_roam_values_copy {
|
||||
#define MAX_PN_LEN 8
|
||||
#define MAX_KEY_LEN 32
|
||||
|
||||
/* MAX_FREQ_RANGE_NUM shouldn't exceed as only in case od SBS there will be 3
|
||||
/* MAX_FREQ_RANGE_NUM shouldn't exceed as only in case of SBS there will be 3
|
||||
* frequency ranges, For DBS, it will be 2. For SMM, it will be 1
|
||||
*/
|
||||
#define MAX_FREQ_RANGE_NUM 3
|
||||
|
@@ -502,7 +502,7 @@ wlan_cm_dual_sta_roam_update_connect_channels(struct wlan_objmgr_psoc *psoc,
|
||||
vdev_id_list,
|
||||
PM_STA_MODE);
|
||||
|
||||
/* No need to fill freq list, if no other STA is in conencted state */
|
||||
/* No need to fill freq list, if no other STA is in connected state */
|
||||
if (!sta_count)
|
||||
return;
|
||||
|
||||
@@ -558,7 +558,7 @@ wlan_cm_dual_sta_roam_update_connect_channels(struct wlan_objmgr_psoc *psoc,
|
||||
channel_list = mlme_cfg->reg.valid_channel_freq_list;
|
||||
|
||||
/*
|
||||
* Buffer of (num channl * 5) + 1 to consider the 4 char freq,
|
||||
* Buffer of (num channel * 5) + 1 to consider the 4 char freq,
|
||||
* 1 space after it for each channel and 1 to end the string
|
||||
* with NULL.
|
||||
*/
|
||||
@@ -1682,7 +1682,7 @@ bool cm_is_fast_roam_enabled(struct wlan_objmgr_psoc *psoc)
|
||||
|
||||
if (mlme_obj->cfg.lfr.enable_fast_roam_in_concurrency)
|
||||
return true;
|
||||
/* return true if no concurency */
|
||||
/* return true if no concurrency */
|
||||
if (policy_mgr_get_connection_count(psoc) < 2)
|
||||
return true;
|
||||
|
||||
@@ -1986,7 +1986,7 @@ wlan_cm_update_mlme_fils_info(struct wlan_objmgr_vdev *vdev,
|
||||
|
||||
mlme_priv = wlan_vdev_mlme_get_ext_hdl(vdev);
|
||||
if (!mlme_priv) {
|
||||
mlme_err("vdev legacy private object is NULL fro vdev %d",
|
||||
mlme_err("vdev legacy private object is NULL for vdev %d",
|
||||
vdev_id);
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
@@ -2759,7 +2759,7 @@ cm_roam_stats_get_trigger_detail_str(struct wmi_roam_trigger_info *ptr,
|
||||
case ROAM_TRIGGER_REASON_PERIODIC:
|
||||
/*
|
||||
* Use ptr->current_rssi get the RSSI of current AP after
|
||||
* roam scan is triggered. This avoids discrepency with the
|
||||
* roam scan is triggered. This avoids discrepancy with the
|
||||
* next rssi threshold value printed in roam scan details.
|
||||
* ptr->rssi_trig_data.threshold gives the rssi threshold
|
||||
* for the Low Rssi/Periodic scan trigger.
|
||||
@@ -2876,7 +2876,7 @@ cm_roam_stats_print_btm_rsp_info(struct wmi_roam_trigger_info *trigger_info,
|
||||
* @vdev_id: vdev id
|
||||
*
|
||||
* Prints the vdev, roam_full_scan_count, channel and rssi
|
||||
* utilization threhold and timer
|
||||
* utilization threshold and timer
|
||||
*
|
||||
* Return: None
|
||||
*/
|
||||
@@ -3032,7 +3032,7 @@ cm_roam_stats_print_scan_info(struct wlan_objmgr_psoc *psoc,
|
||||
/**
|
||||
* cm_roam_stats_print_roam_result() - Print roam result related info
|
||||
* @psoc: Pointer to psoc object
|
||||
* @res: Roam result strucure pointer
|
||||
* @res: Roam result structure pointer
|
||||
* @vdev_id: Vdev id
|
||||
*
|
||||
* Print roam result and failure reason if roaming failed.
|
||||
|
@@ -216,7 +216,7 @@ mlo_roam_get_bssid_chan_for_link(uint8_t vdev_id,
|
||||
* @event: event ptr
|
||||
* @event_data_len: event data len
|
||||
*
|
||||
* This api will be called from connection manger to mlo
|
||||
* This api will be called from connection manager to mlo
|
||||
* manager to start roam sync request on link vdev's.
|
||||
*
|
||||
* Return: qdf status
|
||||
|
@@ -29,7 +29,7 @@
|
||||
/**
|
||||
* wlan_send_wfatest_cmd() - Send WFA test command to firmware
|
||||
* @vdev: VDEV pointer
|
||||
* @wmi_wfatest: wfa test commad pointer
|
||||
* @wmi_wfatest: wfa test command pointer
|
||||
*
|
||||
* Return: QDF_STATUS
|
||||
*/
|
||||
|
Reference in New Issue
Block a user