aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cc/Makefile
diff options
context:
space:
mode:
authorLawrence Stewart <lstewart@FreeBSD.org>2011-02-01 06:42:46 +0000
committerLawrence Stewart <lstewart@FreeBSD.org>2011-02-01 06:42:46 +0000
commitac230a79e152854a8f022cff138c0954340e4bba (patch)
treeeefbe6ef8c8b04ec89ba5e23699d47d8d46ea7fa /sys/modules/cc/Makefile
parent1d4ed791d05008b20e264721e656b96e97585fc3 (diff)
downloadsrc-ac230a79e152854a8f022cff138c0954340e4bba.tar.gz
src-ac230a79e152854a8f022cff138c0954340e4bba.zip
Import a clean-room implementation of the Hamilton-Delay (HD) congestion control
algorithm based on the paper "A strategy for fair coexistence of loss and delay-based congestion control algorithms" by Budzisz, Stanojevic, Shorten and Baker. It is implemented as a kernel module compatible with the recently committed modular congestion control framework. HD uses a probabilistic approach to reacting to delay-based congestion. The probability of reducing cwnd is zero when the queuing delay is very small, increasing to a maximum at a set threshold, then back down to zero again when the queuing delay is high. Normal operation keeps the queuing delay below the set threshold. However, since loss-based congestion control algorithms push the queuing delay high when probing for bandwidth, having the probability of reducing cwnd drop back to zero for high delays allows HD to compete with loss-based algorithms. In collaboration with: David Hayes <dahayes at swin edu au> and Grenville Armitage <garmitage at swin edu au> Sponsored by: FreeBSD Foundation Reviewed by: bz and others along the way MFC after: 3 months
Notes
Notes: svn path=/head/; revision=218153
Diffstat (limited to 'sys/modules/cc/Makefile')
-rw-r--r--sys/modules/cc/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/cc/Makefile b/sys/modules/cc/Makefile
index 31554b06ab30..f03c147389ba 100644
--- a/sys/modules/cc/Makefile
+++ b/sys/modules/cc/Makefile
@@ -1,6 +1,7 @@
# $FreeBSD$
SUBDIR= cc_cubic \
+ cc_hd \
cc_htcp \
cc_vegas