tipc: narrow down exposure of struct tipc_node
In our effort to have less code and include dependencies between entities such as node, link and bearer, we try to narrow down the exposed interface towards the node as much as possible. In this commit, we move the definition of struct tipc_node, along with many of its associated function declarations, from node.h to node.c. We also move some function definitions from link.c and name_distr.c to node.c, since they access fields in struct tipc_node that should not be externally visible. The moved functions are renamed according to new location, and made static whenever possible. There are no functional changes in this commit. Reviewed-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
5405ff6e15
commit
5be9c08671
@@ -43,6 +43,7 @@ struct tipc_node;
|
||||
struct tipc_msg;
|
||||
struct tipc_nl_msg;
|
||||
struct tipc_node_map;
|
||||
extern const char tipc_bclink_name[];
|
||||
|
||||
int tipc_bcast_init(struct net *net);
|
||||
void tipc_bcast_reinit(struct net *net);
|
||||
|
||||
Reference in New Issue
Block a user