浏览代码

qcacld-3.0: Align command "setMaxAssoc" to INI "cfg_assoc_sta_limit"

Align command "setMaxAssoc" to INI "cfg_assoc_sta_limit" since they are
for same configure of host side.

Change-Id: Iccf60f261beef7fb7cc776ee691992e06bc7fa76
CRs-Fixed: 3241183
Wu Gao 2 年之前
父节点
当前提交
fa00b99b19
共有 3 个文件被更改,包括 9 次插入9 次删除
  1. 2 1
      components/mlme/dispatcher/src/wlan_mlme_api.c
  2. 6 5
      core/hdd/src/wlan_hdd_hostapd_wext.c
  3. 1 3
      core/mac/inc/wni_cfg.h

+ 2 - 1
components/mlme/dispatcher/src/wlan_mlme_api.c

@@ -2017,7 +2017,8 @@ QDF_STATUS wlan_mlme_set_assoc_sta_limit(struct wlan_objmgr_psoc *psoc,
 	if (!mlme_obj)
 		return QDF_STATUS_E_FAILURE;
 
-	if (cfg_in_range(CFG_ASSOC_STA_LIMIT, value))
+	if (cfg_in_range(CFG_ASSOC_STA_LIMIT, value) &&
+	    (value <= mlme_obj->cfg.sap_cfg.sap_max_no_peers))
 		mlme_obj->cfg.sap_cfg.assoc_sta_limit = value;
 	else
 		return QDF_STATUS_E_FAILURE;

+ 6 - 5
core/hdd/src/wlan_hdd_hostapd_wext.c

@@ -48,6 +48,7 @@
 #include "wlan_hdd_sta_info.h"
 #include "wlan_hdd_object_manager.h"
 #include "wlan_dp_ucfg_api.h"
+#include "cfg_ucfg_api.h"
 
 #define WE_WLAN_VERSION     1
 
@@ -426,17 +427,17 @@ static __iw_softap_setparam(struct net_device *dev,
 		break;
 
 	case QCSAP_PARAM_MAX_ASSOC:
-		if (WNI_CFG_ASSOC_STA_LIMIT_STAMIN > set_value) {
+		if (set_value < cfg_min(CFG_ASSOC_STA_LIMIT)) {
 			hdd_err("Invalid setMaxAssoc value %d",
 			       set_value);
 			ret = -EINVAL;
 		} else {
-			if (WNI_CFG_ASSOC_STA_LIMIT_STAMAX < set_value) {
+			if (set_value > cfg_max(CFG_ASSOC_STA_LIMIT)) {
 				hdd_warn("setMaxAssoc %d > max allowed %d.",
-				       set_value,
-				       WNI_CFG_ASSOC_STA_LIMIT_STAMAX);
+					 set_value,
+					 cfg_max(CFG_ASSOC_STA_LIMIT));
 				hdd_warn("Setting it to max allowed and continuing");
-				set_value = WNI_CFG_ASSOC_STA_LIMIT_STAMAX;
+				set_value = cfg_max(CFG_ASSOC_STA_LIMIT);
 			}
 			if (ucfg_mlme_set_assoc_sta_limit(hdd_ctx->psoc,
 							  set_value) !=

+ 1 - 3
core/mac/inc/wni_cfg.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2011-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -76,9 +77,6 @@
 
 #define WNI_CFG_WPS_ENABLE_AP    1
 
-#define WNI_CFG_ASSOC_STA_LIMIT_STAMIN    1
-#define WNI_CFG_ASSOC_STA_LIMIT_STAMAX    32
-
 #define WNI_CFG_REMOVE_TIME_SYNC_CMD_STAMIN 0
 #define WNI_CFG_REMOVE_TIME_SYNC_CMD_STAMAX 1
 #define WNI_CFG_REMOVE_TIME_SYNC_CMD_STADEF 0