aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cc/cc_cubic
diff options
context:
space:
mode:
authorLawrence Stewart <lstewart@FreeBSD.org>2010-12-02 06:05:44 +0000
committerLawrence Stewart <lstewart@FreeBSD.org>2010-12-02 06:05:44 +0000
commit67fef78ba41855fda9e6fc309f75f12ad5f0da50 (patch)
tree6aa2dc9996e58bb4a100216ee50308571b0f2220 /sys/modules/cc/cc_cubic
parent5a7bfc90a9f08da82086c84134b8a3513a7c584e (diff)
downloadsrc-67fef78ba41855fda9e6fc309f75f12ad5f0da50.tar.gz
src-67fef78ba41855fda9e6fc309f75f12ad5f0da50.zip
Import a clean-room implementation of the experimental CUBIC congestion control
algorithm based on the Internet-Draft "draft-rhee-tcpm-cubic-02.txt". It is implemented as a kernel module compatible with the recently committed modular congestion control framework. CUBIC was designed for provide increased throughput in fast and long-distance networks. It attempts to maintain fairness when competing with legacy NewReno TCP in lower speed scenarios where NewReno is able to operate adequately. The paper "CUBIC: A New TCP-Friendly High-Speed TCP Variant" provides additional detail. In collaboration with: David Hayes <dahayes at swin edu au> and Grenville Armitage <garmitage at swin edu au> Sponsored by: FreeBSD Foundation Reviewed by: rpaulo (older patch from a few weeks ago) MFC after: 3 months
Notes
Notes: svn path=/head/; revision=216114
Diffstat (limited to 'sys/modules/cc/cc_cubic')
-rw-r--r--sys/modules/cc/cc_cubic/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/modules/cc/cc_cubic/Makefile b/sys/modules/cc/cc_cubic/Makefile
new file mode 100644
index 000000000000..8ffece2aa3bc
--- /dev/null
+++ b/sys/modules/cc/cc_cubic/Makefile
@@ -0,0 +1,9 @@
+# $FreeBSD$
+
+.include <bsd.own.mk>
+
+.PATH: ${.CURDIR}/../../../netinet/cc
+KMOD= cc_cubic
+SRCS= cc_cubic.c
+
+.include <bsd.kmod.mk>