tipc: Split up unified structure of network-related variables
Converts the fields of the global "tipc_net" structure into individual variables. Since the struct was never referenced as a complete unit, its existence was pointless. This will facilitate upcoming changes to TIPC's node table and simpify upcoming relocation of the variables so they are only visible to the files that actually use them. This change is essentially cosmetic in nature, and doesn't affect the operation of TIPC. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
This commit is contained in:

committed by
Paul Gortmaker

parent
9df3b7eb6e
commit
d1bcb11544
@@ -39,21 +39,10 @@
|
||||
|
||||
struct tipc_node;
|
||||
|
||||
/**
|
||||
* struct network - TIPC network structure
|
||||
* @nodes: array of pointers to all nodes within cluster
|
||||
* @highest_node: id of highest numbered node within cluster
|
||||
* @links: number of (unicast) links to cluster
|
||||
*/
|
||||
extern struct tipc_node **tipc_nodes;
|
||||
extern u32 tipc_highest_node;
|
||||
extern atomic_t tipc_num_links;
|
||||
|
||||
struct network {
|
||||
struct tipc_node **nodes;
|
||||
u32 highest_node;
|
||||
atomic_t links;
|
||||
};
|
||||
|
||||
|
||||
extern struct network tipc_net;
|
||||
extern rwlock_t tipc_net_lock;
|
||||
|
||||
void tipc_net_route_msg(struct sk_buff *buf);
|
||||
|
Reference in New Issue
Block a user