]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: fix double EPs display in sctp_diag
authorXin Long <lucien.xin@gmail.com>
Wed, 25 May 2016 19:09:23 +0000 (03:09 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 May 2016 05:14:31 +0000 (22:14 -0700)
commit9cb3361359082d1998ba1fcfbe7f4ca0bc24525e
tree53e185eb72e708916a3d3bfb66c1a9ce20223382
parent1d051a06d501951a02e21e6e6e75336f2fab174c
sctp: fix double EPs display in sctp_diag

We have this situation: that EP hash table, contains only the EPs
that are listening, while the transports one, has the opposite.
We have to traverse both to dump all.

But when we traverse the transports one we will also get EPs that are
in the EP hash if they are listening. In this case, the EP is dumped
twice.

We will fix it by checking if the endpoint that is in the endpoint
hash table contains any ep->asoc in there, as it means we will also
find it via transport hash, and thus we can/should skip it, depending
on the filters used, like 'ss -l'.

Still, we should NOT skip it if the user is listing only listening
endpoints, because then we are not traversing the transport hash.
so we have to check idiag_states there also.

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/sctp_diag.c