From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: linux-sctp@vger.kernel.org, Vlad Yasevich <vyasevich@gmail.com>,
netdev@vger.kernel.org, davem@davemloft.net
Subject: Re: [PATCH net-next stable] sctp: fully initialize sctp_outq in sctp_outq_init
Date: Wed, 12 Jun 2013 13:51:08 +0000 [thread overview]
Message-ID: <51B87CCC.4030200@cogentembedded.com> (raw)
In-Reply-To: <1371041959-17697-1-git-send-email-nhorman@tuxdriver.com>
Hello.
On 12-06-2013 16:59, Neil Horman wrote:
> In commit 2f94aabd9f6c925d77aecb3ff020f1cc12ed8f86, we modified
Please also specify that commit's summary line in parens.
> 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 | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c
> index 32a4625..d8b6958 100644
> --- a/net/sctp/outqueue.c
> +++ b/net/sctp/outqueue.c
> @@ -206,6 +206,9 @@ static inline int sctp_cacc_skip(struct sctp_transport *primary,
> */
> void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
> {
> +
Why empty line here?
> + memset(q, 0, sizeof(struct sctp_outq));
> +
sizeof(*q) would have been shorter...
WBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: linux-sctp@vger.kernel.org, Vlad Yasevich <vyasevich@gmail.com>,
netdev@vger.kernel.org, davem@davemloft.net
Subject: Re: [PATCH net-next stable] sctp: fully initialize sctp_outq in sctp_outq_init
Date: Wed, 12 Jun 2013 17:51:08 +0400 [thread overview]
Message-ID: <51B87CCC.4030200@cogentembedded.com> (raw)
In-Reply-To: <1371041959-17697-1-git-send-email-nhorman@tuxdriver.com>
Hello.
On 12-06-2013 16:59, Neil Horman wrote:
> In commit 2f94aabd9f6c925d77aecb3ff020f1cc12ed8f86, we modified
Please also specify that commit's summary line in parens.
> 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 | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/net/sctp/outqueue.c b/net/sctp/outqueue.c
> index 32a4625..d8b6958 100644
> --- a/net/sctp/outqueue.c
> +++ b/net/sctp/outqueue.c
> @@ -206,6 +206,9 @@ static inline int sctp_cacc_skip(struct sctp_transport *primary,
> */
> void sctp_outq_init(struct sctp_association *asoc, struct sctp_outq *q)
> {
> +
Why empty line here?
> + memset(q, 0, sizeof(struct sctp_outq));
> +
sizeof(*q) would have been shorter...
WBR, Sergei
next prev parent reply other threads:[~2013-06-12 13:51 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-12 12:59 [PATCH net-next stable] sctp: fully initialize sctp_outq in sctp_outq_init Neil Horman
2013-06-12 12:59 ` Neil Horman
2013-06-12 13:51 ` Sergei Shtylyov [this message]
2013-06-12 13:51 ` Sergei Shtylyov
2013-06-12 18:24 ` Neil Horman
2013-06-12 18:24 ` Neil Horman
2013-06-12 19:16 ` David Miller
2013-06-12 19:16 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51B87CCC.4030200@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=davem@davemloft.net \
--cc=linux-sctp@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=nhorman@tuxdriver.com \
--cc=vyasevich@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.