]> git.karo-electronics.de Git - karo-tx-linux.git/commit
sctp: Properly timestamp outgoing data chunks for rtx purposes
authorVlad Yasevich <vladislav.yasevich@hp.com>
Thu, 22 Jan 2009 22:53:01 +0000 (14:53 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 17 Feb 2009 17:28:52 +0000 (09:28 -0800)
commitb1694c2beef9f38397762410d03ae6e38e91f8b7
treeaaf82063465474e5297f0fc5f3925af1f8e68a9e
parenta79f3f862de3975e01ebcb3bba53e0c3fd3ab0fd
sctp: Properly timestamp outgoing data chunks for rtx purposes

[ Upstream commit 759af00ebef858015eb68876ac1f383bcb6a1774 ]

Recent changes to the retransmit code exposed a long standing
bug where it was possible for a chunk to be time stamped
after the retransmit timer was reset.  This caused a rare
situation where the retrnamist timer has expired, but
nothing was marked for retrnasmission because all of
timesamps on data were less then 1 rto ago.  As result,
the timer was never restarted since nothing was retransmitted,
and this resulted in a hung association that did couldn't
complete the data transfer.  The solution is to timestamp
the chunk when it's added to the packet for transmission
purposes.  After the packet is trsnmitted the rtx timer
is restarted.  This guarantees that when the timer expires,
there will be data to retransmit.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/sctp/output.c