qcacld-3.0: Remove qdf assert for non critical errors
Remove qdf assert for non critical errors in qos. Change-Id: I20319bac0bdd268d2d46ce7859fd41e8fdc8f5f5 CRs-Fixed: 2044770
这个提交包含在:
@@ -4415,7 +4415,6 @@ QDF_STATUS sme_qos_process_assoc_complete_ev(tpAniSirGlobal pMac, uint8_t sessio
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__, sessionId, ac,
|
||||
pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4512,7 +4511,6 @@ QDF_STATUS sme_qos_process_reassoc_req_ev(tpAniSirGlobal pMac, uint8_t sessionId
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__,
|
||||
sessionId, ac, pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4733,7 +4731,6 @@ QDF_STATUS sme_qos_process_reassoc_success_ev(tpAniSirGlobal mac_ctx,
|
||||
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
||||
FL("session %d AC %d is in wrong state %d"),
|
||||
sessionid, ac, ac_info->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4801,7 +4798,6 @@ QDF_STATUS sme_qos_process_reassoc_failure_ev(tpAniSirGlobal pMac,
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__,
|
||||
sessionId, ac, pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4856,7 +4852,6 @@ QDF_STATUS sme_qos_process_handoff_assoc_req_ev(tpAniSirGlobal pMac,
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__,
|
||||
sessionId, ac, pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4929,7 +4924,6 @@ QDF_STATUS sme_qos_process_handoff_success_ev(tpAniSirGlobal pMac,
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__,
|
||||
sessionId, ac, pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -4989,7 +4983,6 @@ QDF_STATUS sme_qos_process_handoff_failure_ev(tpAniSirGlobal pMac,
|
||||
"%s: %d: On session %d AC %d is in wrong state %d",
|
||||
__func__, __LINE__,
|
||||
sessionId, ac, pACInfo->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -5165,7 +5158,6 @@ QDF_STATUS sme_qos_process_preauth_success_ind(tpAniSirGlobal mac_ctx,
|
||||
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
|
||||
FL("Session %d AC %d is in wrong state %d"),
|
||||
sessionid, ac, ac_info->curr_state);
|
||||
QDF_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
在新工单中引用
屏蔽一个用户