diff options
author | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2011-07-24 21:18:25 -0600 |
---|---|---|
committer | Gerrit Renker <gerrit@erg.abdn.ac.uk> | 2011-08-01 07:52:35 -0600 |
commit | 31daf0393fbb17cf6efe613fb538a3ea4b5202e4 (patch) | |
tree | 1b6cca8e816283593ee6965198014f997fc91b11 /net/dccp/ccids | |
parent | a6444f4237af6c9981ddd45ab35a5c06d4e5a4d8 (diff) | |
download | kernel_goldelico_gta04-31daf0393fbb17cf6efe613fb538a3ea4b5202e4.zip kernel_goldelico_gta04-31daf0393fbb17cf6efe613fb538a3ea4b5202e4.tar.gz kernel_goldelico_gta04-31daf0393fbb17cf6efe613fb538a3ea4b5202e4.tar.bz2 |
dccp ccid-2: use feature-negotiation to report Ack Ratio changes
This uses the new feature-negotiation framework to signal Ack Ratio changes,
as required by RFC 4341, sec. 6.1.2.
That raises some problems with CCID-2, which at the moment can not cope
gracefully with Ack Ratios > 1. Since these issues are not directly related
to feature negotiation, they are marked by a FIXME.
Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Samuel Jero <sj323707@ohio.edu>
Acked-by: Ian McDonald <ian.mcdonald@jandi.co.uk>
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r-- | net/dccp/ccids/ccid2.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c index 0462040..b51cc92 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) if (hc->tx_rpdupack >= NUMDUPACK) { hc->tx_rpdupack = -1; /* XXX lame */ hc->tx_rpseq = 0; - +#ifdef __CCID2_COPES_GRACEFULLY_WITH_ACK_CONGESTION_CONTROL__ + /* + * FIXME: Ack Congestion Control is broken; in + * the current state instabilities occurred with + * Ack Ratios greater than 1; causing hang-ups + * and long RTO timeouts. This needs to be fixed + * before opening up dynamic changes. -- gerrit + */ ccid2_change_l_ack_ratio(sk, 2 * dp->dccps_l_ack_ratio); +#endif } } } |