|
@@ -894,7 +894,7 @@ QDF_STATUS sme_qos_csr_event_ind(struct mac_context *mac,
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
|
|
|
- sme_debug("On Session %d Event %d received from CSR", sessionId, ind);
|
|
|
+ sme_debug("vdev %d event %d", sessionId, ind);
|
|
|
switch (ind) {
|
|
|
case SME_QOS_CSR_ASSOC_COMPLETE:
|
|
|
/* expecting assoc info in pEvent_info */
|
|
@@ -983,7 +983,7 @@ uint8_t sme_qos_get_acm_mask(struct mac_context *mac, struct bss_description
|
|
|
if (sme_qos_is_acm(mac, pSirBssDesc, ac, pIes))
|
|
|
acm_mask = acm_mask | (1 << (QCA_WLAN_AC_VO - ac));
|
|
|
}
|
|
|
- sme_debug("mask is 0x%x", acm_mask);
|
|
|
+
|
|
|
return acm_mask;
|
|
|
}
|
|
|
|
|
@@ -2667,7 +2667,6 @@ static enum sme_qos_statustype sme_qos_setup(struct mac_context *mac,
|
|
|
static QDF_STATUS sme_qos_process_set_key_success_ind(struct mac_context *mac,
|
|
|
uint8_t sessionId, void *pEvent_info)
|
|
|
{
|
|
|
- sme_debug("Set Key complete");
|
|
|
(void)sme_qos_process_buffered_cmd(sessionId);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
@@ -4020,7 +4019,6 @@ static QDF_STATUS sme_qos_process_assoc_complete_ev(struct mac_context *mac, uin
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
enum qca_wlan_ac_type ac = QCA_WLAN_AC_BE;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
if (((SME_QOS_INIT == pSession->ac_info[QCA_WLAN_AC_BE].curr_state)
|
|
|
&& (SME_QOS_INIT ==
|
|
@@ -4106,7 +4104,6 @@ static QDF_STATUS sme_qos_process_reassoc_req_ev(struct mac_context *mac, uint8_
|
|
|
struct sme_qos_flowinfoentry *flow_info = NULL;
|
|
|
tListElem *entry = NULL;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
|
|
|
if (pSession->ftHandoffInProgress) {
|
|
@@ -4324,8 +4321,6 @@ static QDF_STATUS sme_qos_process_reassoc_success_ev(struct mac_context *mac_ctx
|
|
|
enum qca_wlan_ac_type ac;
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionid);
|
|
|
-
|
|
|
if (sessionid >= WLAN_MAX_VDEVS) {
|
|
|
sme_err("invoked on session %d", sessionid);
|
|
|
return status;
|
|
@@ -4429,7 +4424,6 @@ static QDF_STATUS sme_qos_process_reassoc_failure_ev(struct mac_context *mac,
|
|
|
struct sme_qos_acinfo *pACInfo;
|
|
|
enum qca_wlan_ac_type ac;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
for (ac = QCA_WLAN_AC_BE; ac < QCA_WLAN_AC_ALL; ac++) {
|
|
|
pACInfo = &pSession->ac_info[ac];
|
|
@@ -4538,7 +4532,6 @@ static QDF_STATUS sme_qos_process_handoff_assoc_req_ev(struct mac_context *mac,
|
|
|
struct sme_qos_acinfo *pACInfo;
|
|
|
uint8_t ac;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
for (ac = QCA_WLAN_AC_BE; ac < QCA_WLAN_AC_ALL; ac++) {
|
|
|
pACInfo = &pSession->ac_info[ac];
|
|
@@ -4596,7 +4589,6 @@ static QDF_STATUS sme_qos_process_handoff_success_ev(struct mac_context *mac,
|
|
|
uint8_t ac;
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
/* go back to original state before handoff */
|
|
|
for (ac = QCA_WLAN_AC_BE; ac < QCA_WLAN_AC_ALL; ac++) {
|
|
@@ -4651,7 +4643,6 @@ static QDF_STATUS sme_qos_process_disconnect_ev(struct mac_context *mac, uint8_t
|
|
|
{
|
|
|
struct sme_qos_sessioninfo *pSession;
|
|
|
|
|
|
- sme_debug("invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
/*
|
|
|
* In case of 11r - RIC, we request QoS and Hand-off at the
|
|
@@ -4764,8 +4755,6 @@ static QDF_STATUS sme_qos_process_preauth_success_ind(struct mac_context *mac_ct
|
|
|
struct wlan_objmgr_vdev *vdev;
|
|
|
struct mlme_legacy_priv *mlme_priv;
|
|
|
|
|
|
- sme_debug("invoked on SME session %d", sessionid);
|
|
|
-
|
|
|
if (!sme_session) {
|
|
|
sme_err("sme_session is NULL");
|
|
|
return QDF_STATUS_E_INVAL;
|
|
@@ -5535,10 +5524,6 @@ static void sme_qos_state_transition(uint8_t sessionId,
|
|
|
pACInfo = &pSession->ac_info[ac];
|
|
|
pACInfo->prev_state = pACInfo->curr_state;
|
|
|
pACInfo->curr_state = new_state;
|
|
|
- if (pACInfo->curr_state != pACInfo->prev_state)
|
|
|
- sme_debug("On session %d new %d old %d, for AC %d",
|
|
|
- sessionId, pACInfo->curr_state,
|
|
|
- pACInfo->prev_state, ac);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -5848,10 +5833,9 @@ static QDF_STATUS sme_qos_delete_existing_flows(struct mac_context *mac,
|
|
|
struct sme_qos_flowinfoentry *flow_info = NULL;
|
|
|
|
|
|
pEntry = csr_ll_peek_head(&sme_qos_cb.flow_list, true);
|
|
|
- if (!pEntry) {
|
|
|
- sme_debug("Flow List empty, nothing to delete");
|
|
|
+ if (!pEntry)
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
+
|
|
|
while (pEntry) {
|
|
|
pNextEntry = csr_ll_next(&sme_qos_cb.flow_list, pEntry, true);
|
|
|
flow_info = GET_BASE_ADDR(pEntry, struct sme_qos_flowinfoentry,
|
|
@@ -5933,7 +5917,6 @@ static QDF_STATUS sme_qos_process_buffered_cmd(uint8_t session_id)
|
|
|
QDF_STATUS qdf_ret_status = QDF_STATUS_SUCCESS;
|
|
|
struct sme_qos_cmdinfo *qos_cmd = NULL;
|
|
|
|
|
|
- sme_debug("Invoked on session %d", session_id);
|
|
|
qos_session = &sme_qos_cb.sessionInfo[session_id];
|
|
|
if (!csr_ll_is_list_empty(&qos_session->bufferedCommandList, false)) {
|
|
|
list_elt = csr_ll_remove_head(&qos_session->bufferedCommandList,
|
|
@@ -6007,9 +5990,8 @@ static QDF_STATUS sme_qos_process_buffered_cmd(uint8_t session_id)
|
|
|
}
|
|
|
/* buffered command has been processed, reclaim the memory */
|
|
|
qdf_mem_free(pcmd);
|
|
|
- } else {
|
|
|
- sme_debug("cmd buffer empty");
|
|
|
}
|
|
|
+
|
|
|
return qdf_ret_status;
|
|
|
}
|
|
|
|
|
@@ -6026,14 +6008,11 @@ static QDF_STATUS sme_qos_delete_buffered_requests(struct mac_context *mac,
|
|
|
struct sme_qos_cmdinfoentry *pcmd = NULL;
|
|
|
tListElem *pEntry = NULL, *pNextEntry = NULL;
|
|
|
|
|
|
- sme_debug("Invoked on session %d", sessionId);
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
pEntry = csr_ll_peek_head(&pSession->bufferedCommandList, true);
|
|
|
- if (!pEntry) {
|
|
|
- sme_debug("Buffered List empty, nothing to delete on session %d",
|
|
|
- sessionId);
|
|
|
+ if (!pEntry)
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
+
|
|
|
while (pEntry) {
|
|
|
pNextEntry = csr_ll_next(&pSession->bufferedCommandList, pEntry,
|
|
|
true);
|
|
@@ -6675,8 +6654,9 @@ void sme_qos_update_hand_off(uint8_t sessionId, bool updateHandOff)
|
|
|
struct sme_qos_sessioninfo *pSession;
|
|
|
|
|
|
pSession = &sme_qos_cb.sessionInfo[sessionId];
|
|
|
- sme_debug("handoffRequested %d updateHandOff %d",
|
|
|
- pSession->handoffRequested, updateHandOff);
|
|
|
+ if (pSession->handoffRequested != updateHandOff)
|
|
|
+ sme_debug("handoffRequested %d updateHandOff %d",
|
|
|
+ pSession->handoffRequested, updateHandOff);
|
|
|
|
|
|
pSession->handoffRequested = updateHandOff;
|
|
|
|