]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: don't send FIN message from connectionless socket
authorJon Paul Maloy <jon.maloy@ericsson.com>
Thu, 22 Dec 2016 12:22:29 +0000 (07:22 -0500)
committerDavid S. Miller <davem@davemloft.net>
Fri, 23 Dec 2016 22:53:47 +0000 (17:53 -0500)
commita86172269320db7934bf38b165a9e728caf7368e
tree2889cdc6f954142ec0f054d435cf2dd5c2250b3d
parentdc51658f1ad36b2c48ec546586bb5b1b0a7466b1
tipc: don't send FIN message from connectionless socket

In commit 3642d1d0c311 ("tipc: remove SS_DISCONNECTING state") the
check for socket type is in the wrong place, causing a closing socket
to always send out a FIN message even when the socket was never
connected. This is normally harmless, since the destination node for
such messages most often is zero, and the message will be dropped, but
it is still a wrong and confusing behavior.

We fix this in this commit.

Reviewed-by: Parthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com>
Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/socket.c