summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGowri, Deepthi <deepthi@codeaurora.org>2016-09-02 15:19:32 +0530
committerqcabuildsw <qcabuildsw@localhost>2016-09-11 17:12:18 -0700
commit07ac9938763d62a7412a3742aa25ef29f5fa8a32 (patch)
treee1a3a4723439b7aeb71a79162a7f4dee1f047ebf
parent084c24da74db8193bf44f333413a4f3a7c8ec8d2 (diff)
qcacld-3.0: Convert pr_info logs to qdf_trace logs
qcacld-2.0 to qcacld-3.0 propagation Convert the pr_info logs to qdf_trace logs with error log level, so that the logs are displayed both in kmsg as well as in logger app logs. CRs-Fixed: 956590 Change-Id: Ib6ed5744cf38924a6b1dc20e3291639554c42c6b (cherry picked from commit e7d8f2a4214e32aa30152aff806c0caa15c78787) (cherry picked from commit ecb280f37bfea24afd6996480ca70ee0ef15de94)
-rw-r--r--core/hdd/src/wlan_hdd_assoc.c48
1 files changed, 23 insertions, 25 deletions
diff --git a/core/hdd/src/wlan_hdd_assoc.c b/core/hdd/src/wlan_hdd_assoc.c
index 813c3b4ac317..c88812367bbb 100644
--- a/core/hdd/src/wlan_hdd_assoc.c
+++ b/core/hdd/src/wlan_hdd_assoc.c
@@ -1367,11 +1367,10 @@ static void hdd_send_association_event(struct net_device *dev,
cds_update_connection_info(pAdapter->sessionId);
memcpy(wrqu.ap_addr.sa_data, pHddStaCtx->conn_info.bssId.bytes,
ETH_ALEN);
- pr_info("wlan: new IBSS connection to " MAC_ADDRESS_STR "\n",
- MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes));
+ hdd_err("wlan: new IBSS connection to " MAC_ADDRESS_STR,
+ MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes));
} else { /* Not Associated */
-
- pr_info("wlan: disconnected\n");
+ hdd_err("wlan: disconnected");
memset(wrqu.ap_addr.sa_data, '\0', ETH_ALEN);
cds_decr_session_set_pcl(pAdapter->device_mode,
pAdapter->sessionId);
@@ -2817,16 +2816,15 @@ static QDF_STATUS hdd_association_completion_handler(hdd_adapter_t *pAdapter,
hdd_wext_state_t *pWextState =
WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
if (pRoamInfo)
- pr_info("wlan: connection failed with " MAC_ADDRESS_STR
- " result:%d and Status:%d\n",
- MAC_ADDR_ARRAY(pRoamInfo->bssid.bytes),
- roamResult, roamStatus);
+ hdd_err("wlan: connection failed with " MAC_ADDRESS_STR
+ " result:%d and Status:%d",
+ MAC_ADDR_ARRAY(pRoamInfo->bssid.bytes),
+ roamResult, roamStatus);
else
- pr_info("wlan: connection failed with " MAC_ADDRESS_STR
- " result:%d and Status:%d\n",
- MAC_ADDR_ARRAY(pWextState->req_bssId.bytes),
- roamResult, roamStatus);
-
+ hdd_err("wlan: connection failed with " MAC_ADDRESS_STR
+ " result:%d and Status:%d",
+ MAC_ADDR_ARRAY(pWextState->req_bssId.bytes),
+ roamResult, roamStatus);
/*
* CR465478: Only send up a connection failure result when CSR
* has completed operation - with a ASSOCIATION_FAILURE status.
@@ -3356,12 +3354,12 @@ roam_roam_connect_status_update_handler(hdd_adapter_t *pAdapter,
WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
struct station_info staInfo;
- pr_info("IBSS New Peer indication from SME "
- "with peerMac " MAC_ADDRESS_STR " BSSID: "
- MAC_ADDRESS_STR " and stationID= %d",
- MAC_ADDR_ARRAY(pRoamInfo->peerMac.bytes),
- MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes),
- pRoamInfo->staId);
+ hdd_err("IBSS New Peer indication from SME "
+ "with peerMac " MAC_ADDRESS_STR " BSSID: "
+ MAC_ADDRESS_STR " and stationID= %d",
+ MAC_ADDR_ARRAY(pRoamInfo->peerMac.bytes),
+ MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes),
+ pRoamInfo->staId);
if (!hdd_save_peer
(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
@@ -3446,12 +3444,12 @@ roam_roam_connect_status_update_handler(hdd_adapter_t *pAdapter,
hddLog(LOGW,
"IBSS peer departed by cannot find peer in our registration table with TL");
- pr_info("IBSS Peer Departed from SME "
- "with peerMac " MAC_ADDRESS_STR " BSSID: "
- MAC_ADDRESS_STR " and stationID= %d",
- MAC_ADDR_ARRAY(pRoamInfo->peerMac.bytes),
- MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes),
- pRoamInfo->staId);
+ hdd_err("IBSS Peer Departed from SME "
+ "with peerMac " MAC_ADDRESS_STR " BSSID: "
+ MAC_ADDRESS_STR " and stationID= %d",
+ MAC_ADDR_ARRAY(pRoamInfo->peerMac.bytes),
+ MAC_ADDR_ARRAY(pHddStaCtx->conn_info.bssId.bytes),
+ pRoamInfo->staId);
hdd_roam_deregister_sta(pAdapter, pRoamInfo->staId);