]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
tipc: eliminate risk of double link_up events
authorJon Paul Maloy <jon.maloy@ericsson.com>
Wed, 11 May 2016 23:15:45 +0000 (19:15 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 May 2016 21:11:27 +0000 (17:11 -0400)
When an ACTIVATE or data packet is received in a link in state
ESTABLISHING, the link does not immediately change state to
ESTABLISHED, but does instead return a LINK_UP event to the caller,
which will execute the state change in a different lock context.

This non-atomic approach incurs a low risk that we may have two
LINK_UP events pending simultaneously for the same link, resulting
in the final part of the setup procedure being executed twice. The
only potential harm caused by this it that we may see two LINK_UP
events issued to subsribers of the topology server, something that
may cause confusion.

This commit eliminates this risk by checking if the link is already
up before proceeding with the second half of the setup.

Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/node.c

index d903f560e2fd28086febe52fbf216170b9ee2e19..e01e2c71b5a16fde975b6e87bd134ae57cd57326 100644 (file)
@@ -542,7 +542,7 @@ static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
        struct tipc_link *ol = node_active_link(n, 0);
        struct tipc_link *nl = n->links[bearer_id].link;
 
-       if (!nl)
+       if (!nl || tipc_link_is_up(nl))
                return;
 
        tipc_link_fsm_evt(nl, LINK_ESTABLISH_EVT);