aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid2.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/ccids/ccid2.c')
-rw-r--r--net/dccp/ccids/ccid2.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c
index 0462040fc818..b51cc92376da 100644
--- a/net/dccp/ccids/ccid2.c
+++ b/net/dccp/ccids/ccid2.c
@@ -494,8 +494,16 @@ static void ccid2_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
494 if (hc->tx_rpdupack >= NUMDUPACK) { 494 if (hc->tx_rpdupack >= NUMDUPACK) {
495 hc->tx_rpdupack = -1; /* XXX lame */ 495 hc->tx_rpdupack = -1; /* XXX lame */
496 hc->tx_rpseq = 0; 496 hc->tx_rpseq = 0;
497 497#ifdef __CCID2_COPES_GRACEFULLY_WITH_ACK_CONGESTION_CONTROL__
498 /*
499 * FIXME: Ack Congestion Control is broken; in
500 * the current state instabilities occurred with
501 * Ack Ratios greater than 1; causing hang-ups
502 * and long RTO timeouts. This needs to be fixed
503 * before opening up dynamic changes. -- gerrit
504 */
498 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio); 505 ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio);
506#endif
499 } 507 }
500 } 508 }
501 } 509 }