Sfoglia il codice sorgente

qcacld-3.0: Use TP level as LOW to reset tcp_adv_win_scale

In cnss-daemon TP level as WLAN_SVC_TP_NONE do not reset
tcp_adv_win_scale value. Use TP level as WLAN_SVC_TP_LOW to
reset tcp_adv_win_scale value. Do not send indication if TP
level is already WLAN_SVC_TP_LOW.

Change-Id: I2d7b8b55928c7eacc87832d8be559cba99d6c2d9
CRs-Fixed: 2950037
Nirav Shah 3 anni fa
parent
commit
70cabf51d5
1 ha cambiato i file con 7 aggiunte e 5 eliminazioni
  1. 7 5
      core/hdd/src/wlan_hdd_tx_rx.c

+ 7 - 5
core/hdd/src/wlan_hdd_tx_rx.c

@@ -3411,16 +3411,18 @@ void hdd_reset_tcp_delack(struct hdd_context *hdd_ctx)
 
 void hdd_reset_tcp_adv_win_scale(struct hdd_context *hdd_ctx)
 {
-	enum wlan_tp_level next_level = WLAN_SVC_TP_NONE;
+	enum wlan_tp_level next_level = WLAN_SVC_TP_LOW;
 	struct wlan_rx_tp_data rx_tp_data = {0};
 
 	if (!hdd_ctx->config->enable_tcp_adv_win_scale)
 		return;
 
-	rx_tp_data.rx_tp_flags |= TCP_ADV_WIN_SCL;
-	rx_tp_data.level = next_level;
-	hdd_ctx->cur_rx_level = WLAN_SVC_TP_NONE;
-	wlan_hdd_update_tcp_rx_param(hdd_ctx, &rx_tp_data);
+	if (hdd_ctx->cur_rx_level != next_level) {
+		rx_tp_data.rx_tp_flags |= TCP_ADV_WIN_SCL;
+		rx_tp_data.level = next_level;
+		hdd_ctx->cur_rx_level = next_level;
+		wlan_hdd_update_tcp_rx_param(hdd_ctx, &rx_tp_data);
+	}
 }
 
 /**