From 0ef58eec143dd40c3ce4aa534b98ff1ea284e327 Mon Sep 17 00:00:00 2001 From: Tallapragada Kalyan Date: Fri, 29 Mar 2019 17:18:47 +0530 Subject: [PATCH] qcacmn: Increase the MAX limit of RX Release Ring to 8192 Increase the MAX limit of RX Release ring from 1024 to 8192 Change-Id: I45a4bac2b91b0400fc4acc7cb236f38276a4e0b2 --- wlan_cfg/cfg_dp.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wlan_cfg/cfg_dp.h b/wlan_cfg/cfg_dp.h index 00297b60c5..88ed025aea 100644 --- a/wlan_cfg/cfg_dp.h +++ b/wlan_cfg/cfg_dp.h @@ -240,7 +240,11 @@ #define WLAN_CFG_RX_RELEASE_RING_SIZE 1024 #define WLAN_CFG_RX_RELEASE_RING_SIZE_MIN 8 +#if defined(QCA_WIFI_QCA6390) #define WLAN_CFG_RX_RELEASE_RING_SIZE_MAX 1024 +#else +#define WLAN_CFG_RX_RELEASE_RING_SIZE_MAX 8192 +#endif #define WLAN_CFG_REO_EXCEPTION_RING_SIZE 128 #define WLAN_CFG_REO_EXCEPTION_RING_SIZE_MIN 128