summaryrefslogtreecommitdiff
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2011-10-27 19:03:24 (GMT)
committerPaul Gortmaker <paul.gortmaker@windriver.com>2012-02-06 21:59:18 (GMT)
commit1ec2bb08407b377e5954b3f9479c2bf67fc925a9 (patch)
tree033b2196d0ca61cad93c999e44e07330dc591d5a /net/tipc/node.c
parent7a54d4a99dcbbfdf1d4550faa19b615091137953 (diff)
downloadlinux-fsl-qoriq-1ec2bb08407b377e5954b3f9479c2bf67fc925a9.tar.xz
tipc: Remove obsolete broadcast tag capability
Eliminates support for the broadcast tag field, which is no longer used by broadcast link NACK messages. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r--net/tipc/node.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index 6d8bdfd..7bc45e1 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -49,9 +49,8 @@ LIST_HEAD(tipc_node_list);
static u32 tipc_num_nodes;
static atomic_t tipc_num_links = ATOMIC_INIT(0);
-u32 tipc_own_tag;
-/**
+/*
* tipc_node_find - locate specified node object, if it exists
*/
@@ -309,8 +308,6 @@ static void node_established_contact(struct tipc_node *n_ptr)
if (n_ptr->bclink.supportable) {
tipc_bclink_add_node(n_ptr->addr);
n_ptr->bclink.supported = 1;
- if (n_ptr->addr < tipc_own_addr)
- tipc_own_tag++;
}
}
@@ -353,8 +350,6 @@ static void node_lost_contact(struct tipc_node *n_ptr)
tipc_bclink_remove_node(n_ptr->addr);
tipc_bclink_acknowledge(n_ptr, INVALID_LINK_SEQ);
- if (n_ptr->addr < tipc_own_addr)
- tipc_own_tag--;
n_ptr->bclink.supported = 0;
}