qcacld-3.0: Reduce the log level to optimize roam time

Reduce the log level for the frequent acceptable errors
to reduce the roam latencies.

Change-Id: I9f5405025948d160e6fcd65ecca05dce7670ea84
CRs-Fixed: 3150439
This commit is contained in:
Vulupala Shashank Reddy
2022-03-04 18:46:18 +05:30
committed by Madan Koyyalamudi
parent e730b26b28
commit 5acf8c3e2a
4 changed files with 9 additions and 8 deletions

View File

@@ -201,7 +201,7 @@ QDF_STATUS mlme_init_twt_context(struct wlan_objmgr_psoc *psoc,
WLAN_UMAC_COMP_MLME);
if (!peer_priv) {
wlan_objmgr_peer_release_ref(peer, WLAN_MLME_NB_ID);
mlme_legacy_err("peer mlme component object is NULL");
mlme_legacy_debug("peer mlme component object is NULL");
return QDF_STATUS_E_FAILURE;
}
@@ -473,8 +473,8 @@ void mlme_set_twt_peer_capabilities(struct wlan_objmgr_psoc *psoc,
peer = wlan_objmgr_get_peer_by_mac(psoc, peer_mac->bytes,
WLAN_MLME_NB_ID);
if (!peer) {
mlme_legacy_err("Peer object not found "QDF_MAC_ADDR_FMT,
QDF_MAC_ADDR_REF(peer_mac));
mlme_legacy_debug("Peer object not found "QDF_MAC_ADDR_FMT,
QDF_MAC_ADDR_REF(peer_mac));
return;
}
@@ -482,7 +482,7 @@ void mlme_set_twt_peer_capabilities(struct wlan_objmgr_psoc *psoc,
WLAN_UMAC_COMP_MLME);
if (!peer_priv) {
wlan_objmgr_peer_release_ref(peer, WLAN_MLME_NB_ID);
mlme_legacy_err("peer mlme object is NULL");
mlme_legacy_debug("peer mlme object is NULL");
return;
}