aboutsummaryrefslogtreecommitdiff
path: root/net
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
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')
-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 {
};
/**
- * struct bclink - link used for broadcast messages
+ * struct tipc_bclink - link used for broadcast messages
* @link: (non-standard) broadcast link structure
* @node: (non-standard) node structure representing b'cast link's peer node
* @bcast_nodes: map of broadcast-capable nodes
@@ -93,7 +93,7 @@ struct bcbearer {
* Handles sequence numbering, fragmentation, bundling, etc.
*/
-struct bclink {
+struct tipc_bclink {
struct link link;
struct tipc_node node;
struct tipc_node_map bcast_nodes;
@@ -101,10 +101,10 @@ struct bclink {
};
static struct bcbearer bcast_bearer;
-static struct bclink bcast_link;
+static struct tipc_bclink bcast_link;
static struct bcbearer *bcbearer = &bcast_bearer;
-static struct bclink *bclink = &bcast_link;
+static struct tipc_bclink *bclink = &bcast_link;
static struct link *bcl = &bcast_link.link;
static DEFINE_SPINLOCK(bc_lock);