Skip to content

Commit 6765fd6

Browse files
author
Paul Gortmaker
committed
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>
1 parent 11f9990 commit 6765fd6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

net/tipc/bcast.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ struct bcbearer {
8484
};
8585

8686
/**
87-
* struct bclink - link used for broadcast messages
87+
* struct tipc_bclink - link used for broadcast messages
8888
* @link: (non-standard) broadcast link structure
8989
* @node: (non-standard) node structure representing b'cast link's peer node
9090
* @bcast_nodes: map of broadcast-capable nodes
@@ -93,18 +93,18 @@ struct bcbearer {
9393
* Handles sequence numbering, fragmentation, bundling, etc.
9494
*/
9595

96-
struct bclink {
96+
struct tipc_bclink {
9797
struct link link;
9898
struct tipc_node node;
9999
struct tipc_node_map bcast_nodes;
100100
struct tipc_node *retransmit_to;
101101
};
102102

103103
static struct bcbearer bcast_bearer;
104-
static struct bclink bcast_link;
104+
static struct tipc_bclink bcast_link;
105105

106106
static struct bcbearer *bcbearer = &bcast_bearer;
107-
static struct bclink *bclink = &bcast_link;
107+
static struct tipc_bclink *bclink = &bcast_link;
108108
static struct link *bcl = &bcast_link.link;
109109

110110
static DEFINE_SPINLOCK(bc_lock);

0 commit comments

Comments
 (0)