浏览代码

qcacld-3.0: Increase the change interface wait timer value

Increase the default value of gInterfaceChangeWait timer from
10000 to 300000, when QCA_WIFI_NAPIER_EMULATION is enabled.

Change-Id: I8c3b7907fc2ccfcbbdb152e28a1364630c99555a
CRs-Fixed: 2871256
Aditya Kodukula 4 年之前
父节点
当前提交
f85e7950d7
共有 1 个文件被更改,包括 9 次插入3 次删除
  1. 9 3
      core/hdd/inc/hdd_config.h

+ 9 - 3
core/hdd/inc/hdd_config.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2021 The Linux Foundation. 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
@@ -128,12 +128,18 @@ enum hdd_dot11_mode {
 			CFG_VALUE_OR_DEFAULT, \
 			"dot11 mode")
 
+#ifdef QCA_WIFI_NAPIER_EMULATION
+#define CFG_INTERFACE_CHANGE_WAIT_DEFAULT	300000
+#else
+#define CFG_INTERFACE_CHANGE_WAIT_DEFAULT	10000
+#endif
+
 /*
  * <ini>
  * gInterfaceChangeWait - Interface change wait
  * @Min: 0,
  * @Max: 500000
- * @Default: 10000
+ * @Default: 10000 (300000 for emulation)
  *
  * Timer waiting for interface up from the upper layer. If
  * this timer expires all the cds modules shall be closed.
@@ -151,7 +157,7 @@ enum hdd_dot11_mode {
 			"gInterfaceChangeWait", \
 			0, \
 			500000, \
-			10000, \
+			CFG_INTERFACE_CHANGE_WAIT_DEFAULT, \
 			CFG_VALUE_OR_DEFAULT, \
 			"Interface change wait")