diff options
author | Baruch Even <baruch@ev-en.org> | 2005-06-23 15:28:11 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-06-23 15:28:11 -0400 |
commit | a7868ea68d29eb2c037952aeb3b549cf05749a18 (patch) | |
tree | fff3d29309d29977f3ff55e941702407011af44c /net/ipv4/Kconfig | |
parent | b87d8561d8667d221b728ccdcb18eb95b16a687b (diff) |
[TCP]: Add H-TCP congestion control module.
H-TCP is a congestion control algorithm developed at the Hamilton Institute, by
Douglas Leith and Robert Shorten. It is extending the standard Reno algorithm
with mode switching is thus a relatively simple modification.
H-TCP is defined in a layered manner as it is still a research platform. The
basic form includes the modification of beta according to the ratio of maxRTT
to min RTT and the alpha=2*factor*(1-beta) relation, where factor is dependant
on the time since last congestion.
The other layers improve convergence by adding appropriate factors to alpha.
The following patch implements the H-TCP algorithm in it's basic form.
Signed-Off-By: Baruch Even <baruch@ev-en.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/Kconfig')
-rw-r--r-- | net/ipv4/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/ipv4/Kconfig b/net/ipv4/Kconfig index 6c105b60cc00..73a25b52bf7d 100644 --- a/net/ipv4/Kconfig +++ b/net/ipv4/Kconfig | |||
@@ -467,6 +467,18 @@ config TCP_CONG_WESTWOOD | |||
467 | TCP Westwood+ significantly increases fairness wrt TCP Reno in | 467 | TCP Westwood+ significantly increases fairness wrt TCP Reno in |
468 | wired networks and throughput over wireless links. | 468 | wired networks and throughput over wireless links. |
469 | 469 | ||
470 | config TCP_CONG_HTCP | ||
471 | tristate "H-TCP" | ||
472 | depends on INET | ||
473 | default m | ||
474 | ---help--- | ||
475 | H-TCP is a send-side only modifications of the TCP Reno | ||
476 | protocol stack that optimizes the performance of TCP | ||
477 | congestion control for high speed network links. It uses a | ||
478 | modeswitch to change the alpha and beta parameters of TCP Reno | ||
479 | based on network conditions and in a way so as to be fair with | ||
480 | other Reno and H-TCP flows. | ||
481 | |||
470 | config TCP_CONG_HSTCP | 482 | config TCP_CONG_HSTCP |
471 | tristate "High Speed TCP" | 483 | tristate "High Speed TCP" |
472 | depends on INET && EXPERIMENTAL | 484 | depends on INET && EXPERIMENTAL |
@@ -499,6 +511,7 @@ config TCP_CONG_VEGAS | |||
499 | window. TCP Vegas should provide less packet loss, but it is | 511 | window. TCP Vegas should provide less packet loss, but it is |
500 | not as aggressive as TCP Reno. | 512 | not as aggressive as TCP Reno. |
501 | 513 | ||
514 | |||
502 | endmenu | 515 | endmenu |
503 | 516 | ||
504 | source "net/ipv4/ipvs/Kconfig" | 517 | source "net/ipv4/ipvs/Kconfig" |