diff options
| author | Govind Singh <govinds@codeaurora.org> | 2017-03-09 21:49:29 +0530 |
|---|---|---|
| committer | Govind Singh <govinds@codeaurora.org> | 2017-03-10 12:58:49 +0530 |
| commit | 0fcd027f7eb80ece30c3a15dcefbbe27e2e40223 (patch) | |
| tree | cb539339c143961de0a48df478c24e8934ce98a4 | |
| parent | bba3dcc465ce804672df8ee7111edda5be529734 (diff) | |
ath10k: Increase the ring size of the CE4 ring
Increase the size of host to target CE4 ring
in order to hold more data packets in the ring and
avoid the unnecessary drops at hif layer.
CRs-Fixed: 2017758
Change-Id: Ib344c7035a79b0730a8b39d2441857b363e18efd
Signed-off-by: Govind Singh <govinds@codeaurora.org>
| -rw-r--r-- | drivers/net/wireless/ath/ath10k/snoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/snoc.c b/drivers/net/wireless/ath/ath10k/snoc.c index 081e44b3277a..f6eb131e1e1b 100644 --- a/drivers/net/wireless/ath/ath10k/snoc.c +++ b/drivers/net/wireless/ath/ath10k/snoc.c @@ -96,8 +96,8 @@ static struct ce_attr host_ce_config_wlan[] = { /* CE4: host->target HTT */ { .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR, - .src_nentries = 256, - .src_sz_max = 256, + .src_nentries = 2048, + .src_sz_max = 2048, .dest_nentries = 0, .send_cb = ath10k_snoc_htt_tx_cb, }, |
