瀏覽代碼

qcacld-3.0: Update the max AMSDU limit to 15

Increase the max number of MSDU in AMSDU limit to 15 and set the
default value to 0 to config the FW in auto mode selection in which
FW picks the maximum number of MSDUs in AMSDU based on connection mode.

Change-Id: I6c1f1292a31fc9ea857e60e7a81d10b6def5cbc1
CRs-Fixed: 2502544
Kiran Kumar Lokere 6 年之前
父節點
當前提交
150c4f52d3
共有 1 個文件被更改,包括 10 次插入6 次删除
  1. 10 6
      mlme/dispatcher/inc/cfg_mlme_ht_caps.h

+ 10 - 6
mlme/dispatcher/inc/cfg_mlme_ht_caps.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2019 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
@@ -290,10 +290,14 @@
  * <ini>
  * gMaxAmsduNum - Max number of MSDU's in aggregate
  * @Min: 0
- * @Max: 3
- * @Default: 1
- * gMaxAmsduNum is the number of MSDU's transmitted in the 11n aggregate
+ * @Max: 15
+ * @Default: 0
+ *
+ * gMaxAmsduNum is the number of MSDU's transmitted in the aggregated
  * frame. Setting it to a value larger than 1 enables transmit aggregation.
+ * Set the value to 0 to enable FW automode selection where it decides
+ * the maximum number of MSDUs in AMSDU based on connection mode.
+ *
  * It is a PHY parameter that applies to all vdev's in firmware.
  *
  * Supported Feature: 11n aggregation
@@ -305,8 +309,8 @@
 #define CFG_MAX_AMSDU_NUM CFG_INI_UINT( \
 	"gMaxAmsduNum", \
 	0, \
-	3, \
-	1, \
+	15, \
+	0, \
 	CFG_VALUE_OR_DEFAULT, \
 	"Max AMSDU Number")