فهرست منبع

qcacmn: Change err to debug print in roaming path

Change the peer retrieval error message to debug in
wlan_twt_set_peer_capabilities().

The peer twt capability will be set later after peer
is created. Because of this error print, there is a
delay of around 10-20msec in the roaming path.

Change-Id: I5267a61df5726b67ff727101bd553fd4ce07fa5f
CRs-Fixed: 3314202
Surya Prakash Sivaraj 2 سال پیش
والد
کامیت
049bb88ab0
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      umac/twt/core/src/wlan_twt_common.c

+ 2 - 2
umac/twt/core/src/wlan_twt_common.c

@@ -408,8 +408,8 @@ wlan_twt_set_peer_capabilities(struct wlan_objmgr_psoc *psoc,
 	peer = wlan_objmgr_get_peer_by_mac(psoc, peer_mac->bytes,
 					   WLAN_TWT_ID);
 	if (!peer) {
-		twt_err("Peer object not found "QDF_MAC_ADDR_FMT,
-			QDF_MAC_ADDR_REF(peer_mac->bytes));
+		twt_debug("Peer object not found " QDF_MAC_ADDR_FMT,
+			  QDF_MAC_ADDR_REF(peer_mac->bytes));
 		return QDF_STATUS_E_FAILURE;
 	}