aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 20:52:18 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-12-29 21:53:30 -0500
commit6765fd677168df46dbed3cb4c32b9104ce2d3e83 (patch)
tree8d214d2cb13fc0ab40bb5d225d4d43e65440bd3e /net/tipc/bcast.c
parent11f9990604637e08f163f919ab37d8834dff5583 (diff)
tipc: rename struct bclink to struct tipc_bclink
Make this rename so that it is consistent with the majority of the other tipc structs and to assist in removing any ambiguity with other similar names in other subsystems. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/bcast.c')
-rw-r--r--net/tipc/bcast.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index 653be792b102..e88da1cfe3db 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -84,7 +84,7 @@ struct bcbearer {
84}; 84};
85 85
86/** 86/**
87 * struct bclink - link used for broadcast messages 87 * struct tipc_bclink - link used for broadcast messages
88 * @link: (non-standard) broadcast link structure 88 * @link: (non-standard) broadcast link structure
89 * @node: (non-standard) node structure representing b'cast link's peer node 89 * @node: (non-standard) node structure representing b'cast link's peer node
90 * @bcast_nodes: map of broadcast-capable nodes 90 * @bcast_nodes: map of broadcast-capable nodes
@@ -93,7 +93,7 @@ struct bcbearer {
93 * Handles sequence numbering, fragmentation, bundling, etc. 93 * Handles sequence numbering, fragmentation, bundling, etc.
94 */ 94 */
95 95
96struct bclink { 96struct tipc_bclink {
97 struct link link; 97 struct link link;
98 struct tipc_node node; 98 struct tipc_node node;
99 struct tipc_node_map bcast_nodes; 99 struct tipc_node_map bcast_nodes;
@@ -101,10 +101,10 @@ struct bclink {
101}; 101};
102 102
103static struct bcbearer bcast_bearer; 103static struct bcbearer bcast_bearer;
104static struct bclink bcast_link; 104static struct tipc_bclink bcast_link;
105 105
106static struct bcbearer *bcbearer = &bcast_bearer; 106static struct bcbearer *bcbearer = &bcast_bearer;
107static struct bclink *bclink = &bcast_link; 107static struct tipc_bclink *bclink = &bcast_link;
108static struct link *bcl = &bcast_link.link; 108static struct link *bcl = &bcast_link.link;
109 109
110static DEFINE_SPINLOCK(bc_lock); 110static DEFINE_SPINLOCK(bc_lock);