diff options
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/bcast.c | 8 |
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 | ||
96 | struct bclink { | 96 | struct 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 | ||
103 | static struct bcbearer bcast_bearer; | 103 | static struct bcbearer bcast_bearer; |
104 | static struct bclink bcast_link; | 104 | static struct tipc_bclink bcast_link; |
105 | 105 | ||
106 | static struct bcbearer *bcbearer = &bcast_bearer; | 106 | static struct bcbearer *bcbearer = &bcast_bearer; |
107 | static struct bclink *bclink = &bcast_link; | 107 | static struct tipc_bclink *bclink = &bcast_link; |
108 | static struct link *bcl = &bcast_link.link; | 108 | static struct link *bcl = &bcast_link.link; |
109 | 109 | ||
110 | static DEFINE_SPINLOCK(bc_lock); | 110 | static DEFINE_SPINLOCK(bc_lock); |