summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimanshu Agarwal <himanaga@codeaurora.org>2016-12-06 12:46:24 +0530
committerqcabuildsw <qcabuildsw@localhost>2016-12-16 01:19:37 -0800
commit64d5bb33a05a0adb19833ab8b7f43512cf41115d (patch)
tree74d89277a81672855034dc2a818f106ec6238cb0
parentfe8f4daed27248344eb0b697232de7efc79e024f (diff)
qcacld-3.0: Update ini/ioctl template
Update ini and ioctl template in the code base with the defined template to generate the document using the script. This change includes the following features: LRO, NAPI Change-Id: I66d4d5a78faacfe2673649281cf037135ef108b7 CRs-Fixed: 1097299
-rw-r--r--core/hdd/inc/wlan_hdd_cfg.h38
1 files changed, 30 insertions, 8 deletions
diff --git a/core/hdd/inc/wlan_hdd_cfg.h b/core/hdd/inc/wlan_hdd_cfg.h
index f8ca2b92d581..e890847e21e4 100644
--- a/core/hdd/inc/wlan_hdd_cfg.h
+++ b/core/hdd/inc/wlan_hdd_cfg.h
@@ -3140,9 +3140,20 @@ typedef enum {
#define CFG_TSO_ENABLED_DEFAULT (0)
/*
- * Configuration option to enable or disable LRO (Large Receive Offload)
- * in the WLAN driver
- * Set 1 - enable, 0 - disable
+ * <ini>
+ * LROEnable - Control to enable lro feature
+ *
+ * @Min: 0
+ * @Max: 1
+ * @Default: 0
+ *
+ * This ini is used to enable LRO feature
+ *
+ * Supported Feature: LRO
+ *
+ * Usage: Internal
+ *
+ * </ini>
*/
#define CFG_LRO_ENABLED_NAME "LROEnable"
#define CFG_LRO_ENABLED_MIN (0)
@@ -3888,11 +3899,22 @@ enum dot11p_mode {
#define CFG_SAP_MAX_INACTIVITY_OVERRIDE_DEFAULT (0)
/*
- * This parameter determines that which defered method will be use in rx path
- * If no bits are set then rx path processing will happen in tasklet context.
- * Bit 0: rx_thread enable
- * Bit 1: RPS enable
- * Bit 2: NAPI enable
+ * <ini>
+ * rx_mode - Control to decide rx mode
+ *
+ * @Min: 0
+ * @Max: (CFG_ENABLE_RX_THREAD | CFG_ENABLE_RPS | CFG_ENABLE_NAPI)
+ * @Default: MDM_PLATFORM - 0
+ * HELIUMPLUS - CFG_ENABLE_NAPI
+ * Other cases - (CFG_ENABLE_RX_THREAD | CFG_ENABLE_NAPI)
+ *
+ * This ini is used to decide mode for the rx path
+ *
+ * Supported Feature: NAPI
+ *
+ * Usage: Internal
+ *
+ * </ini>
*/
#define CFG_RX_MODE_NAME "rx_mode"
#define CFG_RX_MODE_MIN (0)