Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107201886
D23353.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D23353.diff
View Options
Index: head/sys/netinet/cc/cc_cubic.c
===================================================================
--- head/sys/netinet/cc/cc_cubic.c
+++ head/sys/netinet/cc/cc_cubic.c
@@ -366,8 +366,9 @@
CCV(ccv, t_maxseg);
else
/* Update cwnd based on beta and adjusted max_cwnd. */
- CCV(ccv, snd_cwnd) = max(1, ((CUBIC_BETA *
- cubic_data->max_cwnd) >> CUBIC_SHIFT));
+ CCV(ccv, snd_cwnd) = max(((uint64_t)cubic_data->max_cwnd *
+ CUBIC_BETA) >> CUBIC_SHIFT,
+ 2 * CCV(ccv, t_maxseg));
}
cubic_data->t_last_cong = ticks;
@@ -433,6 +434,7 @@
cubic_ssthresh_update(struct cc_var *ccv)
{
struct cubic *cubic_data;
+ uint32_t ssthresh;
cubic_data = ccv->cc_data;
@@ -441,10 +443,11 @@
* subsequent congestion events, set it to cwnd * beta.
*/
if (cubic_data->num_cong_events == 0)
- CCV(ccv, snd_ssthresh) = CCV(ccv, snd_cwnd) >> 1;
+ ssthresh = CCV(ccv, snd_cwnd) >> 1;
else
- CCV(ccv, snd_ssthresh) = ((u_long)CCV(ccv, snd_cwnd) *
+ ssthresh = ((uint64_t)CCV(ccv, snd_cwnd) *
CUBIC_BETA) >> CUBIC_SHIFT;
+ CCV(ccv, snd_ssthresh) = max(ssthresh, 2 * CCV(ccv, t_maxseg));
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 12, 2:41 PM (19 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15770133
Default Alt Text
D23353.diff (1 KB)
Attached To
Mode
D23353: ECN and CUBIC do not play well together in very congested networks
Attached
Detach File
Event Timeline
Log In to Comment