diff options
| author | Per Liden <per.liden@ericsson.com> | 2006-01-18 00:38:21 +0100 | 
|---|---|---|
| committer | Per Liden <per.liden@ericsson.com> | 2006-01-18 00:45:16 +0100 | 
| commit | 4323add67792ced172d0d93b8b2e6187023115f1 (patch) | |
| tree | 13224010f6f18029fb710a1e0b48392aea90b486 /net/tipc/node_subscr.c | |
| parent | 1e63e681e06d438fdc542d40924a4f155d461bbd (diff) | |
| download | olio-linux-3.10-4323add67792ced172d0d93b8b2e6187023115f1.tar.xz olio-linux-3.10-4323add67792ced172d0d93b8b2e6187023115f1.zip  | |
[TIPC] Avoid polluting the global namespace
This patch adds a tipc_ prefix to all externally visible symbols.
Signed-off-by: Per Liden <per.liden@ericsson.com>
Diffstat (limited to 'net/tipc/node_subscr.c')
| -rw-r--r-- | net/tipc/node_subscr.c | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/net/tipc/node_subscr.c b/net/tipc/node_subscr.c index 79375927916..afeea121d8b 100644 --- a/net/tipc/node_subscr.c +++ b/net/tipc/node_subscr.c @@ -41,39 +41,39 @@  #include "addr.h"  /** - * nodesub_subscribe - create "node down" subscription for specified node + * tipc_nodesub_subscribe - create "node down" subscription for specified node   */ -void nodesub_subscribe(struct node_subscr *node_sub, u32 addr,  +void tipc_nodesub_subscribe(struct node_subscr *node_sub, u32 addr,   		       void *usr_handle, net_ev_handler handle_down)  {  	node_sub->node = 0;  	if (addr == tipc_own_addr)  		return; -	if (!addr_node_valid(addr)) { +	if (!tipc_addr_node_valid(addr)) {  		warn("node_subscr with illegal %x\n", addr);  		return;  	}  	node_sub->handle_node_down = handle_down;  	node_sub->usr_handle = usr_handle; -	node_sub->node = node_find(addr); +	node_sub->node = tipc_node_find(addr);  	assert(node_sub->node); -	node_lock(node_sub->node); +	tipc_node_lock(node_sub->node);  	list_add_tail(&node_sub->nodesub_list, &node_sub->node->nsub); -	node_unlock(node_sub->node); +	tipc_node_unlock(node_sub->node);  }  /** - * nodesub_unsubscribe - cancel "node down" subscription (if any) + * tipc_nodesub_unsubscribe - cancel "node down" subscription (if any)   */ -void nodesub_unsubscribe(struct node_subscr *node_sub) +void tipc_nodesub_unsubscribe(struct node_subscr *node_sub)  {  	if (!node_sub->node)  		return; -	node_lock(node_sub->node); +	tipc_node_lock(node_sub->node);  	list_del_init(&node_sub->nodesub_list); -	node_unlock(node_sub->node); +	tipc_node_unlock(node_sub->node);  }  |