aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/cc/Makefile
diff options
context:
space:
mode:
authorHiren Panchasara <hiren@FreeBSD.org>2015-01-12 08:33:04 +0000
committerHiren Panchasara <hiren@FreeBSD.org>2015-01-12 08:33:04 +0000
commit64807b300fb6711a37fbf34980f7d1bb45c75c8d (patch)
treeed5e8b1632fe37558e60c46cb8f8390246897828 /sys/modules/cc/Makefile
parentd89abe19b053503cf9a2d14a462d8d866a85e97a (diff)
downloadsrc-64807b300fb6711a37fbf34980f7d1bb45c75c8d.tar.gz
src-64807b300fb6711a37fbf34980f7d1bb45c75c8d.zip
DCTCP (Data Center TCP) implementation.
DCTCP congestion control algorithm aims to maximise throughput and minimise latency in data center networks by utilising the proportion of Explicit Congestion Notification (ECN) marked packets received from capable hardware as a congestion signal. Highlights: Implemented as a mod_cc(4) module. ECN (Explicit congestion notification) processing is done differently from RFC3168. Takes one-sided DCTCP into consideration where only one of the sides is using DCTCP and other is using standard ECN. IETF draft: http://tools.ietf.org/html/draft-bensley-tcpm-dctcp-00 Thesis report by Midori Kato: https://eggert.org/students/kato-thesis.pdf Submitted by: Midori Kato <katoon@sfc.wide.ad.jp> and Lars Eggert <lars@netapp.com> with help and modifications from hiren Differential Revision: https://reviews.freebsd.org/D604 Reviewed by: gnn
Notes
Notes: svn path=/head/; revision=277054
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 7b851f5b31cf..7f4e94e659e1 100644
--- a/sys/modules/cc/Makefile
+++ b/sys/modules/cc/Makefile
@@ -3,6 +3,7 @@
SUBDIR= cc_cdg \
cc_chd \
cc_cubic \
+ cc_dctcp \
cc_hd \
cc_htcp \
cc_vegas