aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorJon Paul Maloy <jon.maloy@ericsson.com>2016-04-28 20:16:08 -0400
committerDavid S. Miller <davem@davemloft.net>2016-05-01 19:40:22 -0400
commitdef22c47d749c5ff8011831a8232b951f223963e (patch)
tree77faf5e97b878ac8d1ac0a89991ab7eb6e01eb85 /net/tipc/node.c
parentof: of_mdio: Check if MDIO bus controller is available (diff)
downloadlinux-dev-def22c47d749c5ff8011831a8232b951f223963e.tar.xz
linux-dev-def22c47d749c5ff8011831a8232b951f223963e.zip
tipc: set 'active' state correctly for first established link
When we are displaying statistics for the first link established between two peers, it will always be presented as STANDBY although it in reality is ACTIVE. This happens because we forget to set the 'active' flag in the link instance at the moment it is established. Although this is a bug, it only has impact on the presentation view of the link, not on its actual functionality. Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r--net/tipc/node.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index 68d9f7b8485c..c29915688230 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -554,6 +554,7 @@ static void __tipc_node_link_up(struct tipc_node *n, int bearer_id,
*slot1 = bearer_id;
tipc_node_fsm_evt(n, SELF_ESTABL_CONTACT_EVT);
n->action_flags |= TIPC_NOTIFY_NODE_UP;
+ tipc_link_set_active(nl, true);
tipc_bcast_add_peer(n->net, nl, xmitq);
return;
}