]> bbs.cooldavid.org Git - net-next-2.6.git/commit
dccp ccid-2: Simplify dec_pipe and rearming of RTO timer
authorGerrit Renker <gerrit@erg.abdn.ac.uk>
Sun, 22 Aug 2010 19:41:39 +0000 (19:41 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Aug 2010 03:13:31 +0000 (20:13 -0700)
commitc38c92a84a9291a3d0eaf6a13650a11961ae964f
tree10ecb23a7da317f7c18d1388bb1b97f3e82b65de
parent30564e355511b434613aa42375317b5a07fc9f23
dccp ccid-2: Simplify dec_pipe and rearming of RTO timer

This removes the dec_pipe function and improves the way the RTO timer is rearmed
when a new acknowledgment comes in.

Details and justification for removal:
--------------------------------------
 1) The BUG_ON in dec_pipe is never triggered: pipe is only decremented for TX
    history entries between tail and head, for which it had previously been
    incremented in tx_packet_sent; and it is not decremented twice for the same
    entry, since it is
    - either decremented when a corresponding Ack Vector cell in state 0 or 1
      was received (and then ccid2s_acked==1),
    - or it is decremented when ccid2s_acked==0, as part of the loss detection
      in tx_packet_recv (and hence it can not have been decremented earlier).

 2) Restarting the RTO timer happens for every single entry in each Ack Vector
    parsed by tx_packet_recv (according to RFC 4340, 11.4 this can happen up to
    16192 times per Ack Vector).

 3) The RTO timer should not be restarted when all outstanding data has been
    acknowledged. This is currently done similar to (2), in dec_pipe, when
    pipe has reached 0.

The patch onsolidates the code which rearms the RTO timer, combining the
segments from new_ack and dec_pipe. As a result, the code becomes clearer
(compare with tcp_rearm_rto()).

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