Re: [PATCH net] sctp: sctp_remaddr_seq_show use the wrong variable to dump transport info
From: David Miller <davem@davemloft.net>
Date: 2016-03-01 22:36:15
Also in:
linux-sctp
From: David Miller <davem@davemloft.net>
Date: 2016-03-01 22:36:15
Also in:
linux-sctp
From: Xin Long <lucien.xin@gmail.com> Date: Sun, 28 Feb 2016 10:33:11 +0800
Now in sctp_remaddr_seq_show(), we use variable *tsp to get the param *v.
but *tsp is also used to traversal transport_addr_list, which will cover
the previous value, and make sctp_transport_put work on the wrong transport.
So fix it by adding a new variable to get the param *v.
Fixes: fba4c330c5b9 ("sctp: hold transport before we access t->asoc in sctp proc")
Signed-off-by: Xin Long <lucien.xin@gmail.com>Applied, thanks.