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:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/netinet/cc cc_cubic.c
Message-ID:  <201101210520.p0L5KBAa002511@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
lstewart    2011-01-21 05:19:47 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet/cc       cc_cubic.c 
  Log:
  SVN rev 217683 on 2011-01-21 05:19:47Z by lstewart
  
  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
  
  Revision  Changes    Path
  1.2       +17 -6     src/sys/netinet/cc/cc_cubic.c



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