Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jan 2011 05:19:47 +0000 (UTC)
From:      Lawrence Stewart <lstewart@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r217683 - head/sys/netinet/cc
Message-ID:  <201101210519.p0L5JlhO040093@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lstewart
Date: Fri Jan 21 05:19:47 2011
New Revision: 217683
URL: http://svn.freebsd.org/changeset/base/217683

Log:
  Some correctness and robustness fixes related to CUBIC's mean RTT estimate:
  
  - The mean RTT is updated at the end of each congestion epoch, but if we switch
    to congestion avoidance within the first epoch (e.g. if ssthresh was primed
    from the hostcache), we'll trigger a divide by zero panic in
    cubic_ack_received(). Set the mean to the min in cubic_record_rtt() if the
    mean is less than the min to ensure we have a sane mean for use in this
    situation. This fixes the panic reported by Nick Hibma.
  
  - Adjust conditions under which we update the mean RTT in cubic_post_recovery()
    to ensure a low latency path won't yield an RTT of less than 1. This avoids
    another potential divide by zero panic when running CUBIC in networks with
    sub-millisecond latencies.
  
  - Remove the "safety" assignment of min into mean when we don't update the mean
    because of failed conditions. The above change to the conditions for updating
    the mean ensures the safety issue is addressed and I feel it is better to keep
    our previous mean estimate around if we can't update than to revert to the
    min.
  
  - Initialise the mean RTT to 1 on connection startup to act as a safety belt if
    a situation we haven't considered and addressed with the above changes were to
    crop up in the wild.
  
  Sponsored by:	FreeBSD Foundation
  Reported and tested by:	Nick Hibma
  Discussed with:	David Hayes <dahayes at swin edu au>
  MFC after:	5 weeks
  X-MFC with:	r216114

Modified:
  head/sys/netinet/cc/cc_cubic.c

Modified: head/sys/netinet/cc/cc_cubic.c
==============================================================================
--- head/sys/netinet/cc/cc_cubic.c	Fri Jan 21 03:14:08 2011	(r217682)
+++ head/sys/netinet/cc/cc_cubic.c	Fri Jan 21 05:19:47 2011	(r217683)
@@ -212,7 +212,7 @@ cubic_cb_init(struct cc_var *ccv)
 	/* Init some key variables with sensible defaults. */
 	cubic_data->t_last_cong = ticks;
 	cubic_data->min_rtt_ticks = TCPTV_SRTTBASE;
-	cubic_data->mean_rtt_ticks = TCPTV_SRTTBASE;
+	cubic_data->mean_rtt_ticks = 1;
 
 	ccv->cc_data = cubic_data;
 
@@ -328,12 +328,11 @@ cubic_post_recovery(struct cc_var *ccv)
 	cubic_data->t_last_cong = ticks;
 
 	/* Calculate the average RTT between congestion epochs. */
-	if (cubic_data->epoch_ack_count > 0 && cubic_data->sum_rtt_ticks > 0)
+	if (cubic_data->epoch_ack_count > 0 &&
+	    cubic_data->sum_rtt_ticks >= cubic_data->epoch_ack_count) {
 		cubic_data->mean_rtt_ticks = (int)(cubic_data->sum_rtt_ticks /
 		    cubic_data->epoch_ack_count);
-	else
-		/* For safety. */
-		cubic_data->mean_rtt_ticks = cubic_data->min_rtt_ticks;
+	}
 
 	cubic_data->epoch_ack_count = 0;
 	cubic_data->sum_rtt_ticks = 0;
@@ -362,9 +361,21 @@ cubic_record_rtt(struct cc_var *ccv)
 		 * XXXLAS: Should there be some hysteresis for minrtt?
 		 */
 		if ((t_srtt_ticks < cubic_data->min_rtt_ticks ||
-		    cubic_data->min_rtt_ticks == TCPTV_SRTTBASE))
+		    cubic_data->min_rtt_ticks == TCPTV_SRTTBASE)) {
 			cubic_data->min_rtt_ticks = max(1, t_srtt_ticks);
 
+			/*
+			 * If the connection is within its first congestion
+			 * epoch, ensure we prime mean_rtt_ticks with a
+			 * reasonable value until the epoch average RTT is
+			 * calculated in cubic_post_recovery().
+			 */
+			if (cubic_data->min_rtt_ticks >
+			    cubic_data->mean_rtt_ticks)
+				cubic_data->mean_rtt_ticks =
+				    cubic_data->min_rtt_ticks;
+		}
+
 		/* Sum samples for epoch average RTT calculation. */
 		cubic_data->sum_rtt_ticks += t_srtt_ticks;
 		cubic_data->epoch_ack_count++;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101210519.p0L5JlhO040093>