aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/node.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index ace178fd3850..b00e12cda66c 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -581,8 +581,12 @@ static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
581static void tipc_node_link_up(struct tipc_node *n, int bearer_id, 581static void tipc_node_link_up(struct tipc_node *n, int bearer_id,
582 struct sk_buff_head *xmitq) 582 struct sk_buff_head *xmitq)
583{ 583{
584 struct tipc_media_addr *maddr;
585
584 tipc_node_write_lock(n); 586 tipc_node_write_lock(n);
585 __tipc_node_link_up(n, bearer_id, xmitq); 587 __tipc_node_link_up(n, bearer_id, xmitq);
588 maddr = &n->links[bearer_id].maddr;
589 tipc_bearer_xmit(n->net, bearer_id, xmitq, maddr);
586 tipc_node_write_unlock(n); 590 tipc_node_write_unlock(n);
587} 591}
588 592