aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/bcast.c')
-rw-r--r--net/tipc/bcast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index c24690fbaa7f..8eb87b11d100 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -94,7 +94,7 @@ struct tipc_bcbearer {
94 */ 94 */
95 95
96struct tipc_bclink { 96struct tipc_bclink {
97 struct link link; 97 struct tipc_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;
100 struct tipc_node *retransmit_to; 100 struct tipc_node *retransmit_to;
@@ -105,7 +105,7 @@ static struct tipc_bclink bcast_link;
105 105
106static struct tipc_bcbearer *bcbearer = &bcast_bearer; 106static struct tipc_bcbearer *bcbearer = &bcast_bearer;
107static struct tipc_bclink *bclink = &bcast_link; 107static struct tipc_bclink *bclink = &bcast_link;
108static struct link *bcl = &bcast_link.link; 108static struct tipc_link *bcl = &bcast_link.link;
109 109
110static DEFINE_SPINLOCK(bc_lock); 110static DEFINE_SPINLOCK(bc_lock);
111 111
@@ -308,7 +308,7 @@ exit:
308 308
309static void bclink_send_ack(struct tipc_node *n_ptr) 309static void bclink_send_ack(struct tipc_node *n_ptr)
310{ 310{
311 struct link *l_ptr = n_ptr->active_links[n_ptr->addr & 1]; 311 struct tipc_link *l_ptr = n_ptr->active_links[n_ptr->addr & 1];
312 312
313 if (l_ptr != NULL) 313 if (l_ptr != NULL)
314 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0); 314 tipc_link_send_proto_msg(l_ptr, STATE_MSG, 0, 0, 0, 0, 0);