diff options
| author | Poddar, Siddarth <siddpodd@qti.qualcomm.com> | 2016-05-06 16:11:29 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-05-10 17:59:18 +0530 |
| commit | 30779c86af06d7864483167d08bacef360b99963 (patch) | |
| tree | b21a62397b452c200c7c46ee326b08bd75dfff2d | |
| parent | 18beacf8dd6c50fdd5f17ec122b97e5fd6bf8b83 (diff) | |
qcacld-2.0: Reduce unnecessary logging in HL Datapath
Reduce unnecessary logging by reducing the log level in bundle packet
for High Latency Datapath.
CRs-Fixed: 972009
Change-Id: I4d28876f206cb155f2d0df51628347e6f3493262
| -rw-r--r-- | CORE/CLD_TXRX/TXRX/ol_tx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CORE/CLD_TXRX/TXRX/ol_tx.c b/CORE/CLD_TXRX/TXRX/ol_tx.c index cb78aa61d5b0..0cc3eb446896 100644 --- a/CORE/CLD_TXRX/TXRX/ol_tx.c +++ b/CORE/CLD_TXRX/TXRX/ol_tx.c @@ -827,7 +827,7 @@ ol_tx_pdev_reset_bundle_require(void* pdev_handle) TAILQ_FOREACH(vdev, &pdev->vdev_list, vdev_list_elem) { vdev->bundling_reqired = false; - TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, + TXRX_PRINT(TXRX_PRINT_LEVEL_INFO1, "vdev_id %d bundle_require %d\n", vdev->vdev_id, vdev->bundling_reqired); } @@ -860,7 +860,7 @@ ol_tx_vdev_set_bundle_require(uint8_t vdev_id, unsigned long tx_bytes, vdev->bundling_reqired = false; if (old_bundle_required != vdev->bundling_reqired) - TXRX_PRINT(TXRX_PRINT_LEVEL_ERR, + TXRX_PRINT(TXRX_PRINT_LEVEL_INFO1, "vdev_id %d bundle_require %d tx_bytes %ld time_in_ms %d high_th %d low_th %d\n", vdev->vdev_id, vdev->bundling_reqired, tx_bytes, time_in_ms, high_th, low_th); |
