Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F109865102
D47439.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
419 B
Referenced Files
None
Subscribers
None
D47439.diff
View Options
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c
--- a/sys/netinet/tcp_timer.c
+++ b/sys/netinet/tcp_timer.c
@@ -810,7 +810,9 @@
*/
tp->t_rtttime = 0;
- cc_cong_signal(tp, NULL, CC_RTO);
+ /* Do not overwrite the snd_cwnd on SYN retransmissions. */
+ if (tp->t_state != TCPS_SYN_SENT)
+ cc_cong_signal(tp, NULL, CC_RTO);
NET_EPOCH_ENTER(et);
rv = tcp_output_locked(tp);
NET_EPOCH_EXIT(et);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Feb 11, 12:33 PM (12 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16595085
Default Alt Text
D47439.diff (419 B)
Attached To
Mode
D47439: tcp: consistently set CWND to MSS in case of SYN/SYN ACK retransmissions
Attached
Detach File
Event Timeline
Log In to Comment