]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
authorlucien <lucien.xin@gmail.com>
Wed, 26 Aug 2015 20:52:20 +0000 (04:52 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 28 Aug 2015 00:11:44 +0000 (17:11 -0700)
commitcdf0c63af2c1401797ac3a0f59289cc10c26d0e0
tree1f0ddd2e4bcd65759fb98c85ddc50fdadc6bc7ef
parenta5c07ef3e7e4a1bfc16584929d0adcc8b5924bc8
sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state

Commit 90bb86209507 ("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 90bb86209507 ("sctp: Enforce retransmission limit during shutdown")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/sm_sideeffect.c