netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init
@ 2013-06-12 18:26 Neil Horman
  2013-06-12 18:40 ` Vlad Yasevich
  2013-06-13  9:44 ` David Miller
  0 siblings, 2 replies; 5+ messages in thread
From: Neil Horman @ 2013-06-12 18:26 UTC (permalink / raw)
  To: linux-sctp; +Cc: Sergei Shtylyov, Neil Horman, Vlad Yasevich, netdev, davem

In commit 2f94aabd9f6c925d77aecb3ff020f1cc12ed8f86
(refactor sctp_outq_teardown to insure proper re-initalization)
we modified sctp_outq_teardown to use sctp_outq_init to fully re-initalize the
outq structure.  Steve West recently asked me why I removed the q->error = 0
initalization from sctp_outq_teardown.  I did so because I was operating under
the impression that sctp_outq_init would properly initalize that value for us,
but it doesn't.  sctp_outq_init operates under the assumption that the outq
struct is all 0's (as it is when called from sctp_association_init), but using
it in __sctp_outq_teardown violates that assumption. We should do a memset in
sctp_outq_init to ensure that the entire structure is in a known state there
instead.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Reported-by: "West, Steve (NSN - US/Fort Worth)" <steve.west@nsn.com>
CC: Vlad Yasevich <vyasevich@gmail.com>
CC: netdev@vger.kernel.org
CC: davem@davemloft.net
---
 net/sctp/outqueue.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c
index 32a4625..be35e2d 100644
--- a/net/sctp/outqueue.c
+++ b/net/sctp/outqueue.c
@@ -206,6 +206,8 @@ static inline int sctp_cacc_skip(struct sctp_transport *primary,
  */
 void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
 {
+	memset(q, 0, sizeof(struct sctp_outq));
+
 	q->asoc = asoc;
 	INIT_LIST_HEAD(&q->out_chunk_list);
 	INIT_LIST_HEAD(&q->control_chunk_list);
@@ -213,11 +215,7 @@ void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
 	INIT_LIST_HEAD(&q->sacked);
 	INIT_LIST_HEAD(&q->abandoned);
 
-	q->fast_rtx = 0;
-	q->outstanding_bytes = 0;
 	q->empty = 1;
-	q->cork  = 0;
-	q->out_qlen = 0;
 }
 
 /* Free the outqueue structure and any related pending chunks.
-- 
1.8.1.4

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

* Re: [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init
  2013-06-12 18:26 [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init Neil Horman
@ 2013-06-12 18:40 ` Vlad Yasevich
  2013-06-13  9:44 ` David Miller
  1 sibling, 0 replies; 5+ messages in thread
From: Vlad Yasevich @ 2013-06-12 18:40 UTC (permalink / raw)
  To: Neil Horman; +Cc: linux-sctp, Sergei Shtylyov, netdev, davem

On 06/12/2013 02:26 PM, Neil Horman wrote:
> In commit 2f94aabd9f6c925d77aecb3ff020f1cc12ed8f86
> (refactor sctp_outq_teardown to insure proper re-initalization)
> we modified sctp_outq_teardown to use sctp_outq_init to fully re-initalize the
> outq structure.  Steve West recently asked me why I removed the q->error = 0
> initalization from sctp_outq_teardown.  I did so because I was operating under
> the impression that sctp_outq_init would properly initalize that value for us,
> but it doesn't.  sctp_outq_init operates under the assumption that the outq
> struct is all 0's (as it is when called from sctp_association_init), but using
> it in __sctp_outq_teardown violates that assumption. We should do a memset in
> sctp_outq_init to ensure that the entire structure is in a known state there
> instead.
>
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
> Reported-by: "West, Steve (NSN - US/Fort Worth)" <steve.west@nsn.com>
> CC: Vlad Yasevich <vyasevich@gmail.com>

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

-vlad

> CC: netdev@vger.kernel.org
> CC: davem@davemloft.net
> ---
>   net/sctp/outqueue.c | 6 ++----
>   1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c
> index 32a4625..be35e2d 100644
> --- a/net/sctp/outqueue.c
> +++ b/net/sctp/outqueue.c
> @@ -206,6 +206,8 @@ static inline int sctp_cacc_skip(struct sctp_transport *primary,
>    */
>   void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
>   {
> +	memset(q, 0, sizeof(struct sctp_outq));
> +
>   	q->asoc = asoc;
>   	INIT_LIST_HEAD(&q->out_chunk_list);
>   	INIT_LIST_HEAD(&q->control_chunk_list);
> @@ -213,11 +215,7 @@ void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
>   	INIT_LIST_HEAD(&q->sacked);
>   	INIT_LIST_HEAD(&q->abandoned);
>
> -	q->fast_rtx = 0;
> -	q->outstanding_bytes = 0;
>   	q->empty = 1;
> -	q->cork  = 0;
> -	q->out_qlen = 0;
>   }
>
>   /* Free the outqueue structure and any related pending chunks.
>

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

* Re: [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init
  2013-06-12 18:26 [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init Neil Horman
  2013-06-12 18:40 ` Vlad Yasevich
@ 2013-06-13  9:44 ` David Miller
  2013-06-13 13:08   ` Neil Horman
  1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2013-06-13  9:44 UTC (permalink / raw)
  To: nhorman; +Cc: linux-sctp, sergei.shtylyov, vyasevich, netdev


'net-next' + 'stable' is an invalid set of targets for a patch.

If the patch is appropriate for 'stable', then it had better be
appropriate for plain 'net' as well.

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

* Re: [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init
  2013-06-13  9:44 ` David Miller
@ 2013-06-13 13:08   ` Neil Horman
  2013-06-14  1:06     ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Neil Horman @ 2013-06-13 13:08 UTC (permalink / raw)
  To: David Miller; +Cc: linux-sctp, sergei.shtylyov, vyasevich, netdev

On Thu, Jun 13, 2013 at 02:44:53AM -0700, David Miller wrote:
> 
> 'net-next' + 'stable' is an invalid set of targets for a patch.
> 
> If the patch is appropriate for 'stable', then it had better be
> appropriate for plain 'net' as well.
> 
Sorry, I just meant to indicate that I had initially applied it to net-next.  I
had meant to add net in there as well, where it also applies cleanly
Neil

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

* Re: [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init
  2013-06-13 13:08   ` Neil Horman
@ 2013-06-14  1:06     ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2013-06-14  1:06 UTC (permalink / raw)
  To: nhorman; +Cc: linux-sctp, sergei.shtylyov, vyasevich, netdev

From: Neil Horman <nhorman@tuxdriver.com>
Date: Thu, 13 Jun 2013 09:08:49 -0400

> On Thu, Jun 13, 2013 at 02:44:53AM -0700, David Miller wrote:
>> 
>> 'net-next' + 'stable' is an invalid set of targets for a patch.
>> 
>> If the patch is appropriate for 'stable', then it had better be
>> appropriate for plain 'net' as well.
>> 
> Sorry, I just meant to indicate that I had initially applied it to net-next.  I
> had meant to add net in there as well, where it also applies cleanly

Applied to 'net' and queued up for -stable, thanks!

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

end of thread, other threads:[~2013-06-14  1:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-12 18:26 [PATCH net-next stable v2] sctp: fully initialize sctp_outq in sctp_outq_init Neil Horman
2013-06-12 18:40 ` Vlad Yasevich
2013-06-13  9:44 ` David Miller
2013-06-13 13:08   ` Neil Horman
2013-06-14  1:06     ` 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).