]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: fully initialize sctp_outq in sctp_outq_init
authorNeil Horman <nhorman@tuxdriver.com>
Wed, 12 Jun 2013 18:26:44 +0000 (14:26 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 14 Jun 2013 01:05:24 +0000 (18:05 -0700)
commit44e17d9903f4a1d18417646987de560d45637b3c
tree76aedd560b11183e6fa5e477e577178ac50e73c0
parent1e150db9d8b91e5ceb8462d99d9b356606f15ec4
sctp: fully initialize sctp_outq in sctp_outq_init

In commit 36b0a1141931a143db90fc2ff206146484078d00
(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
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/outqueue.c