Sfoglia il codice sorgente

qcacmn: Separate TcpDelAck and TcpAdvWinScale

Separate tcp-delayed-ack and tcp-advanced-window-scaling triggers
so that these system parameters can be set separately.

Change-Id: If2f869243152e698409e8a38459f5fabe44f35cb
CRs-Fixed: 2133069
Manjunathappa Prakash 7 anni fa
parent
commit
449a2a0425
1 ha cambiato i file con 16 aggiunte e 0 eliminazioni
  1. 16 0
      utils/nlink/inc/wlan_nlink_common.h

+ 16 - 0
utils/nlink/inc/wlan_nlink_common.h

@@ -250,4 +250,20 @@ struct wlan_core_minfreq {
 	uint16_t freq;
 };
 
+/* Indication to enable TCP delayed ack in TPUT indication */
+#define TCP_DEL_ACK_IND	(1 << 0)
+/* Indication to enable TCP advance window scaling in TPUT indication */
+#define TCP_ADV_WIN_SCL	(1 << 1)
+
+/**
+ * struct wlan_rx_tp_data - msg to TCP delayed ack and advance window scaling
+ * @level:            Throughput level.
+ * @rx_tp_flags:      Bit map of flags, for which this indcation will take
+ *                    effect, bit map for TCP_ADV_WIN_SCL and TCP_DEL_ACK_IND.
+ */
+struct wlan_rx_tp_data {
+	enum wlan_tp_level level;
+	uint16_t rx_tp_flags;
+};
+
 #endif /* WLAN_NLINK_COMMON_H__ */