浏览代码

qcacld-3.0: Increase MAX_CFG_INI_ITEMS to 1024

This is a qcacld-2.0 to qcacld-3.0 propagation.

Increase the maximum config ini items from 512 to 1024.

Change-Id: I5c4958d5c743f1e0b03a4f7b41e21ff9787ccd07
CRs-Fixed: 914336
Srinivas Girigowda 9 年之前
父节点
当前提交
34a80af90d
共有 2 个文件被更改,包括 4 次插入5 次删除
  1. 1 1
      core/hdd/inc/wlan_hdd_cfg.h
  2. 3 4
      core/hdd/src/wlan_hdd_cfg.c

+ 1 - 1
core/hdd/inc/wlan_hdd_cfg.h

@@ -53,7 +53,7 @@
 #endif
 
 /* Number of items that can be configured */
-#define MAX_CFG_INI_ITEMS   512
+#define MAX_CFG_INI_ITEMS   1024
 
 /* Defines for all of the things we read from the configuration (registry). */
 

+ 3 - 4
core/hdd/src/wlan_hdd_cfg.c

@@ -3916,11 +3916,10 @@ static CDF_STATUS hdd_apply_cfg_ini(hdd_context_t *pHddCtx,
 	int i;
 	int rv;
 
-	/* sanity test */
 	if (MAX_CFG_INI_ITEMS < cRegTableEntries) {
-		hddLog(LOGE,
-		       "%s: MAX_CFG_INI_ITEMS too small, must be at least %ld",
-		       __func__, cRegTableEntries);
+		hddLog(LOGE, FL("MAX_CFG_INI_ITEMS too small, must be at least %ld"),
+		       cRegTableEntries);
+		WARN_ON(1);
 	}
 
 	for (idx = 0; idx < cRegTableEntries; idx++, pRegEntry++) {