sctp: Clear fast_recovery on the transport when T3 timer expires.
[deliverable/linux.git] / net / sctp / transport.c
index e5dde45c79d32ee1be4b0a2532d0a885a2a57145..c256e4839316b1cadc1480a8a6b482a306882a22 100644 (file)
@@ -503,6 +503,9 @@ void sctp_transport_lower_cwnd(struct sctp_transport *transport,
                transport->ssthresh = max(transport->cwnd/2,
                                          4*transport->asoc->pathmtu);
                transport->cwnd = transport->asoc->pathmtu;
+
+               /* T3-rtx also clears fast recovery on the transport */
+               transport->fast_recovery = 0;
                break;
 
        case SCTP_LOWER_CWND_FAST_RTX:
This page took 0.029165 seconds and 5 git commands to generate.