Browse Source

qcacld-3.0: Optimize logging for Tx frame Path

Optimize logging by decreasing number of log
lines printed for the Tx frame path.

Change-Id: Iff24346a6b20286b68ee18451155495f624da316
CRs-Fixed: 3168409
Utkarsh Bhatnagar 3 years ago
parent
commit
fc883a2f9b
2 changed files with 9 additions and 17 deletions
  1. 5 8
      components/p2p/dispatcher/src/wlan_p2p_ucfg_api.c
  2. 4 9
      core/hdd/src/wlan_hdd_p2p.c

+ 5 - 8
components/p2p/dispatcher/src/wlan_p2p_ucfg_api.c

@@ -304,12 +304,6 @@ QDF_STATUS ucfg_p2p_mgmt_tx(struct wlan_objmgr_psoc *soc,
 	QDF_STATUS status;
 	int32_t id;
 
-	p2p_debug("soc:%pK, vdev_id:%d, freq:%d, wait:%d, buf_len:%d,"
-		  " cck:%d, no ack:%d, off chan:%d",
-		  soc, mgmt_frm->vdev_id, mgmt_frm->chan_freq,
-		  mgmt_frm->wait, mgmt_frm->len, mgmt_frm->no_cck,
-		  mgmt_frm->dont_wait_for_ack, mgmt_frm->off_chan);
-
 	if (!soc) {
 		p2p_err("psoc context passed is NULL");
 		return QDF_STATUS_E_INVAL;
@@ -359,6 +353,11 @@ QDF_STATUS ucfg_p2p_mgmt_tx(struct wlan_objmgr_psoc *soc,
 
 	p2p_rand_mac_tx(pdev, tx_action);
 
+	p2p_debug("soc:%pK, vdev_id:%d, freq:%d, wait:%d, buf_len:%d, cck:%d, no ack:%d, off chan:%d cookie = 0x%llx",
+		  soc, mgmt_frm->vdev_id, mgmt_frm->chan_freq,
+		  mgmt_frm->wait, mgmt_frm->len, mgmt_frm->no_cck,
+		  mgmt_frm->dont_wait_for_ack, mgmt_frm->off_chan, *cookie);
+
 	msg.type = P2P_MGMT_TX;
 	msg.bodyptr = tx_action;
 	msg.callback = p2p_process_cmd;
@@ -375,8 +374,6 @@ QDF_STATUS ucfg_p2p_mgmt_tx(struct wlan_objmgr_psoc *soc,
 		p2p_err("post msg fail:%d", status);
 	}
 
-	p2p_debug("cookie = 0x%llx", *cookie);
-
 	return status;
 }
 

+ 4 - 9
core/hdd/src/wlan_hdd_p2p.c

@@ -287,8 +287,6 @@ static int __wlan_hdd_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
 	QDF_STATUS qdf_status;
 	int ret;
 
-	hdd_enter();
-
 	if (QDF_GLOBAL_FTM_MODE == hdd_get_conparam()) {
 		hdd_err("Command not allowed in FTM mode");
 		return -EINVAL;
@@ -338,12 +336,6 @@ static int __wlan_hdd_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
 	}
 
 off_chan_tx:
-	hdd_debug("device_mode:%d type:%d sub_type:%d chan:%d",
-		  adapter->device_mode, type, sub_type,
-		  chan ? chan->center_freq : 0);
-	hdd_debug("wait:%d offchan:%d do_not_wait_ack:%d",
-		  wait, offchan, dont_wait_for_ack);
-
 	vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_P2P_ID);
 	if (!vdev) {
 		hdd_err("vdev is NULL");
@@ -357,7 +349,10 @@ off_chan_tx:
 	status = wlan_cfg80211_mgmt_tx(vdev, chan, offchan, wait, buf,
 				       len, no_cck, dont_wait_for_ack, cookie);
 	hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_P2P_ID);
-	hdd_debug("mgmt tx, status:%d, cookie:0x%llx", status, *cookie);
+	hdd_debug("device_mode:%d type:%d sub_type:%d chan:%d wait:%d offchan:%d do_not_wait_ack:%d mgmt tx, status:%d, cookie:0x%llx",
+		  adapter->device_mode, type, sub_type,
+		  chan ? chan->center_freq : 0, wait, offchan,
+		  dont_wait_for_ack, status, *cookie);
 
 	return 0;
 }