summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBian Guolei <gbian@codeaurora.org>2016-12-12 17:27:59 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2016-12-13 06:24:48 -0800
commit4f27fbee69b891cd68eefd214cf83b6ae2bb5cd8 (patch)
tree73ba895e6c370e70def1f8d70c0ea1412fdec820
parentce7bf369964acebe54e8cb5ef98b43d765c40d25 (diff)
qcacld-2.0: Apply TxFlowLowWaterMark setting to IBSS mode
Apply TxFlowLowWaterMark setting to IBSS mode to avoid TCP uplink throughput drop on the 4.1 kernel. Change-Id: I4d4fd4e62abee91db2b694a9a32ee52e36868651 CRs-Fixed: 1099487
-rw-r--r--CORE/HDD/src/wlan_hdd_main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c
index e0f3a0e0070d..bba3537a5fd4 100644
--- a/CORE/HDD/src/wlan_hdd_main.c
+++ b/CORE/HDD/src/wlan_hdd_main.c
@@ -12249,6 +12249,10 @@ void hdd_dump_concurrency_info(hdd_context_t *pHddCtx)
}
break;
case WLAN_HDD_IBSS:
+#ifdef QCA_LL_TX_FLOW_CT
+ pAdapter->tx_flow_low_watermark =
+ pHddCtx->cfg_ini->TxFlowLowWaterMark;
+#endif
return; /* skip printing station message below */
default:
break;