Skip to content

Commit f648f80

Browse files
lxindavem330
authored andcommitted
sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
Commit f8d9605 ("sctp: Enforce retransmission limit during shutdown") fixed a problem with excessive retransmissions in the SHUTDOWN_PENDING by not resetting the association overall_error_count. This allowed the association to better enforce assoc.max_retrans limit. However, the same issue still exists when the association is in SHUTDOWN_RECEIVED state. In this state, HB-ACKs will continue to reset the overall_error_count for the association would extend the lifetime of association unnecessarily. This patch solves this by resetting the overall_error_count whenever the current state is small then SCTP_STATE_SHUTDOWN_PENDING. As a small side-effect, we end up also handling SCTP_STATE_SHUTDOWN_ACK_SENT and SCTP_STATE_SHUTDOWN_SENT states, but they are not really impacted because we disable Heartbeats in those states. Fixes: Commit f8d9605 ("sctp: Enforce retransmission limit during shutdown") Signed-off-by: Xin Long <[email protected]> Acked-by: Marcelo Ricardo Leitner <[email protected]> Acked-by: Vlad Yasevich <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent ce7b4cc commit f648f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/sctp/sm_sideeffect.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
702702
* outstanding data and rely on the retransmission limit be reached
703703
* to shutdown the association.
704704
*/
705-
if (t->asoc->state != SCTP_STATE_SHUTDOWN_PENDING)
705+
if (t->asoc->state < SCTP_STATE_SHUTDOWN_PENDING)
706706
t->asoc->overall_error_count = 0;
707707

708708
/* Clear the hb_sent flag to signal that we had a good

0 commit comments

Comments
 (0)