aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc')
-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);