|
@@ -459,6 +459,10 @@
|
|
|
#define WLAN_CFG_TX_CAPT_MAX_MEM_MAX 512
|
|
|
#define WLAN_CFG_TX_CAPT_MAX_MEM_DEFAULT 0
|
|
|
|
|
|
+#define CFG_DP_MPDU_RETRY_THRESHOLD_MIN 0
|
|
|
+#define CFG_DP_MPDU_RETRY_THRESHOLD_MAX 255
|
|
|
+#define CFG_DP_MPDU_RETRY_THRESHOLD 0
|
|
|
+
|
|
|
/*
|
|
|
* <ini>
|
|
|
* "dp_tx_capt_max_mem_mb"- maximum memory used by Tx capture
|
|
@@ -1641,6 +1645,48 @@
|
|
|
#define CFG_DP_MLO_CONFIG
|
|
|
#endif
|
|
|
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * dp_mpdu_retry_threshold_1 - threshold to increment mpdu success with retries
|
|
|
+ * @Min: 0
|
|
|
+ * @Max: 255
|
|
|
+ * @Default: 0
|
|
|
+ *
|
|
|
+ * This ini entry is used to set first threshold to increment the value of
|
|
|
+ * mpdu_success_with_retries
|
|
|
+ *
|
|
|
+ * Usage: Internal
|
|
|
+ *
|
|
|
+ * </ini>
|
|
|
+ */
|
|
|
+#define CFG_DP_MPDU_RETRY_THRESHOLD_1 \
|
|
|
+ CFG_INI_UINT("dp_mpdu_retry_threshold_1", \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD_MIN, \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD_MAX, \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, "DP mpdu retry threshold 1")
|
|
|
+
|
|
|
+/*
|
|
|
+ * <ini>
|
|
|
+ * dp_mpdu_retry_threshold_2 - threshold to increment mpdu success with retries
|
|
|
+ * @Min: 0
|
|
|
+ * @Max: 255
|
|
|
+ * @Default: 0
|
|
|
+ *
|
|
|
+ * This ini entry is used to set second threshold to increment the value of
|
|
|
+ * mpdu_success_with_retries
|
|
|
+ *
|
|
|
+ * Usage: Internal
|
|
|
+ *
|
|
|
+ * </ini>
|
|
|
+ */
|
|
|
+#define CFG_DP_MPDU_RETRY_THRESHOLD_2 \
|
|
|
+ CFG_INI_UINT("dp_mpdu_retry_threshold_2", \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD_MIN, \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD_MAX, \
|
|
|
+ CFG_DP_MPDU_RETRY_THRESHOLD, \
|
|
|
+ CFG_VALUE_OR_DEFAULT, "DP mpdu retry threshold 2")
|
|
|
+
|
|
|
#define CFG_DP \
|
|
|
CFG(CFG_DP_HTT_PACKET_TYPE) \
|
|
|
CFG(CFG_DP_INT_BATCH_THRESHOLD_OTHER) \
|
|
@@ -1741,6 +1787,8 @@
|
|
|
CFG(CFG_DP_DELAY_MON_REPLENISH) \
|
|
|
CFG(CFG_DP_TX_MONITOR_BUF_RING) \
|
|
|
CFG(CFG_DP_TX_MONITOR_DST_RING) \
|
|
|
+ CFG(CFG_DP_MPDU_RETRY_THRESHOLD_1) \
|
|
|
+ CFG(CFG_DP_MPDU_RETRY_THRESHOLD_2) \
|
|
|
CFG_DP_IPA_TX_RING_CFG \
|
|
|
CFG_DP_PPE_CONFIG \
|
|
|
CFG_DP_IPA_TX_ALT_RING_CFG \
|