]> bbs.cooldavid.org Git - net-next-2.6.git/commit
dccp ccid-2: Share TCP's minimum RTO code
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Sun, 29 Aug 2010 19:23:13 +0000 (19:23 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 30 Aug 2010 20:45:27 +0000 (13:45 -0700)
commit4886fcad6e12572afbd230dfab1b268eace20d6d
treec0ac7dc930a8de315083ec3882ff78a325747e70
parent22b71c8f4f3db8df92f5e7b081c265bc56c0bd2f
dccp ccid-2: Share TCP's minimum RTO code

Using a fixed RTO_MIN of 0.2 seconds was found to cause problems for CCID-2
over 802.11g: at least once per session there was a spurious timeout. It
helped to then increase the the value of RTO_MIN over this link.

Since the problem is the same as in TCP, this patch makes the solution from
commit "05bb1fad1cde025a864a90cfeb98dcbefe78a44a"
       "[TCP]: Allow minimum RTO to be configurable via routing metrics."
available to DCCP.

This avoids reinventing the wheel, so that e.g. the following works in the
expected way now also for CCID-2:

> ip route change 10.0.0.2 rto_min 800 dev ath0

Luckily this useful rto_min function was recently moved to net/tcp.h,
which simplifies sharing code originating from TCP.

Documentation also updated (plus minor whitespace fixes).

Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/networking/dccp.txt
net/dccp/ccids/ccid2.c