diff options
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r-- | net/tipc/node.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c index a0ca1ac53119..3db501260de1 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c | |||
@@ -368,8 +368,8 @@ static void node_established_contact(struct tipc_node *n_ptr) | |||
368 | { | 368 | { |
369 | n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP; | 369 | n_ptr->action_flags |= TIPC_NOTIFY_NODE_UP; |
370 | n_ptr->bclink.oos_state = 0; | 370 | n_ptr->bclink.oos_state = 0; |
371 | n_ptr->bclink.acked = tipc_bclink_get_last_sent(); | 371 | n_ptr->bclink.acked = tipc_bclink_get_last_sent(n_ptr->net); |
372 | tipc_bclink_add_node(n_ptr->addr); | 372 | tipc_bclink_add_node(n_ptr->net, n_ptr->addr); |
373 | } | 373 | } |
374 | 374 | ||
375 | static void node_lost_contact(struct tipc_node *n_ptr) | 375 | static void node_lost_contact(struct tipc_node *n_ptr) |
@@ -389,7 +389,7 @@ static void node_lost_contact(struct tipc_node *n_ptr) | |||
389 | n_ptr->bclink.reasm_buf = NULL; | 389 | n_ptr->bclink.reasm_buf = NULL; |
390 | } | 390 | } |
391 | 391 | ||
392 | tipc_bclink_remove_node(n_ptr->addr); | 392 | tipc_bclink_remove_node(n_ptr->net, n_ptr->addr); |
393 | tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ); | 393 | tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ); |
394 | 394 | ||
395 | n_ptr->bclink.recv_permitted = false; | 395 | n_ptr->bclink.recv_permitted = false; |