aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVlad Yasevich <vladislav.yasevich@hp.com>2008-06-04 15:39:11 -0400
committerDavid S. Miller <davem@davemloft.net>2008-06-04 15:39:11 -0400
commit62aeaff5ccd96462b7077046357a6d7886175a57 (patch)
tree8ea18997997a8724222c86f659b559e12bcf4a86 /include
parenta6465234814efda9ed1dccdba852953f7508e827 (diff)
sctp: Start T3-RTX timer when fast retransmitting lowest TSN
When we are trying to fast retransmit the lowest outstanding TSN, we need to restart the T3-RTX timer, so that subsequent timeouts will correctly tag all the packets necessary for retransmissions. Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com> Tested-by: Wei Yongjun <yjwei@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/sctp/structs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 67592072a32e..714dc43c0345 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -1051,7 +1051,7 @@ void sctp_transport_route(struct sctp_transport *, union sctp_addr *,
1051 struct sctp_sock *); 1051 struct sctp_sock *);
1052void sctp_transport_pmtu(struct sctp_transport *); 1052void sctp_transport_pmtu(struct sctp_transport *);
1053void sctp_transport_free(struct sctp_transport *); 1053void sctp_transport_free(struct sctp_transport *);
1054void sctp_transport_reset_timers(struct sctp_transport *); 1054void sctp_transport_reset_timers(struct sctp_transport *, int);
1055void sctp_transport_hold(struct sctp_transport *); 1055void sctp_transport_hold(struct sctp_transport *);
1056void sctp_transport_put(struct sctp_transport *); 1056void sctp_transport_put(struct sctp_transport *);
1057void sctp_transport_update_rto(struct sctp_transport *, __u32); 1057void sctp_transport_update_rto(struct sctp_transport *, __u32);
@@ -1141,6 +1141,9 @@ struct sctp_outq {
1141 /* How many unackd bytes do we have in-flight? */ 1141 /* How many unackd bytes do we have in-flight? */
1142 __u32 outstanding_bytes; 1142 __u32 outstanding_bytes;
1143 1143
1144 /* Are we doing fast-rtx on this queue */
1145 char fast_rtx;
1146
1144 /* Corked? */ 1147 /* Corked? */
1145 char cork; 1148 char cork;
1146 1149