aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorVlad Yasevich <vladislav.yasevich@hp.com>2006-06-17 22:56:08 -0700
committerDavid S. Miller <davem@davemloft.net>2006-06-17 22:56:08 -0700
commit4c9f5d5305a23851e67471b147e0d459a7166717 (patch)
tree6cacecfa0b61248b996dfe54d1f944c5bab32d6d /net
parent[SCTP]: Reject sctp packets with broadcast addresses. (diff)
downloadlinux-dev-4c9f5d5305a23851e67471b147e0d459a7166717.tar.xz
linux-dev-4c9f5d5305a23851e67471b147e0d459a7166717.zip
[SCTP] Reset rtt_in_progress for the chunk when processing its sack.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com> Signed-off-by: Sridhar Samudrala <sri@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sctp/outqueue.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c
index f148f9576dd2..e5faa351aaad 100644
--- a/net/sctp/outqueue.c
+++ b/net/sctp/outqueue.c
@@ -1262,6 +1262,7 @@ static void sctp_check_transmitted(struct sctp_outq *q,
if (!tchunk->tsn_gap_acked &&
!tchunk->resent &&
tchunk->rtt_in_progress) {
+ tchunk->rtt_in_progress = 0;
rtt = jiffies - tchunk->sent_at;
sctp_transport_update_rto(transport,
rtt);