netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
@ 2015-08-26 20:52 Xin Long
  2015-08-27 21:03 ` lucien xin
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Xin Long @ 2015-08-26 20:52 UTC (permalink / raw)
  To: network dev; +Cc: mleitner, davem, vyasevic

Commit f8d960524328 ("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 f8d960524328 ("sctp: Enforce retransmission limit during shutdown")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 net/sctp/sm_sideeffect.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c
index fef2acd..85e6f03 100644
--- a/net/sctp/sm_sideeffect.c
+++ b/net/sctp/sm_sideeffect.c
@@ -702,7 +702,7 @@ static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
 	 * outstanding data and rely on the retransmission limit be reached
 	 * to shutdown the association.
 	 */
-	if (t->asoc->state != SCTP_STATE_SHUTDOWN_PENDING)
+	if (t->asoc->state < SCTP_STATE_SHUTDOWN_PENDING)
 		t->asoc->overall_error_count = 0;
 
 	/* Clear the hb_sent flag to signal that we had a good
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
  2015-08-26 20:52 [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state Xin Long
@ 2015-08-27 21:03 ` lucien xin
  2015-08-27 21:18 ` Marcelo Ricardo Leitner
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: lucien xin @ 2015-08-27 21:03 UTC (permalink / raw)
  To: network dev; +Cc: Marcelo Ricardo Leitner, davem, Vlad Yasevich

hi, Vlad, plz help to ACK this one

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
  2015-08-26 20:52 [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state Xin Long
  2015-08-27 21:03 ` lucien xin
@ 2015-08-27 21:18 ` Marcelo Ricardo Leitner
  2015-08-27 23:48 ` Vlad Yasevich
  2015-08-28  0:12 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Marcelo Ricardo Leitner @ 2015-08-27 21:18 UTC (permalink / raw)
  To: Xin Long; +Cc: network dev, davem, vyasevic

On Thu, Aug 27, 2015 at 04:52:20AM +0800, Xin Long wrote:
> Commit f8d960524328 ("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 f8d960524328 ("sctp: Enforce retransmission limit during shutdown")
> Signed-off-by: Xin Long <lucien.xin@gmail.com>

Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
thx

> ---
>  net/sctp/sm_sideeffect.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c
> index fef2acd..85e6f03 100644
> --- a/net/sctp/sm_sideeffect.c
> +++ b/net/sctp/sm_sideeffect.c
> @@ -702,7 +702,7 @@ static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
>  	 * outstanding data and rely on the retransmission limit be reached
>  	 * to shutdown the association.
>  	 */
> -	if (t->asoc->state != SCTP_STATE_SHUTDOWN_PENDING)
> +	if (t->asoc->state < SCTP_STATE_SHUTDOWN_PENDING)
>  		t->asoc->overall_error_count = 0;
>  
>  	/* Clear the hb_sent flag to signal that we had a good
> -- 
> 2.1.0
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
  2015-08-26 20:52 [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state Xin Long
  2015-08-27 21:03 ` lucien xin
  2015-08-27 21:18 ` Marcelo Ricardo Leitner
@ 2015-08-27 23:48 ` Vlad Yasevich
  2015-08-28  0:12 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: Vlad Yasevich @ 2015-08-27 23:48 UTC (permalink / raw)
  To: Xin Long, network dev; +Cc: mleitner, davem

On 08/26/2015 04:52 PM, Xin Long wrote:
> Commit f8d960524328 ("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 f8d960524328 ("sctp: Enforce retransmission limit during shutdown")
> Signed-off-by: Xin Long <lucien.xin@gmail.com>
> ---
>  net/sctp/sm_sideeffect.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c
> index fef2acd..85e6f03 100644
> --- a/net/sctp/sm_sideeffect.c
> +++ b/net/sctp/sm_sideeffect.c
> @@ -702,7 +702,7 @@ static void sctp_cmd_transport_on(sctp_cmd_seq_t *cmds,
>  	 * outstanding data and rely on the retransmission limit be reached
>  	 * to shutdown the association.
>  	 */
> -	if (t->asoc->state != SCTP_STATE_SHUTDOWN_PENDING)
> +	if (t->asoc->state < SCTP_STATE_SHUTDOWN_PENDING)
>  		t->asoc->overall_error_count = 0;
>  
>  	/* Clear the hb_sent flag to signal that we had a good
> 

Acked-by: Vlad Yasevich <vyasevich@gmail.com>

-vlad

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state
  2015-08-26 20:52 [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state Xin Long
                   ` (2 preceding siblings ...)
  2015-08-27 23:48 ` Vlad Yasevich
@ 2015-08-28  0:12 ` David Miller
  3 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2015-08-28  0:12 UTC (permalink / raw)
  To: lucien.xin; +Cc: netdev, mleitner, vyasevic

From: Xin Long <lucien.xin@gmail.com>
Date: Thu, 27 Aug 2015 04:52:20 +0800

> Commit f8d960524328 ("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 f8d960524328 ("sctp: Enforce retransmission limit during shutdown")
> Signed-off-by: Xin Long <lucien.xin@gmail.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-28  0:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-26 20:52 [PATCH net v3] sctp: donot reset the overall_error_count in SHUTDOWN_RECEIVE state Xin Long
2015-08-27 21:03 ` lucien xin
2015-08-27 21:18 ` Marcelo Ricardo Leitner
2015-08-27 23:48 ` Vlad Yasevich
2015-08-28  0:12 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).