diff options
| author | stephen hemminger <shemminger@vyatta.com> | 2010-10-13 13:20:35 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-10-16 11:13:24 -0700 | 
| commit | 31e3c3f6f1f9b154981a0e6620df700463db30ee (patch) | |
| tree | 5ed74529c528cc9a09d6f8c9a5083aaf4849b62e /include/net/tipc | |
| parent | 15419227f773b6c1b5fae44bde876078a9204caa (diff) | |
| download | olio-linux-3.10-31e3c3f6f1f9b154981a0e6620df700463db30ee.tar.xz olio-linux-3.10-31e3c3f6f1f9b154981a0e6620df700463db30ee.zip  | |
tipc: cleanup function namespace
Do some cleanups of TIPC based on make namespacecheck
  1. Don't export unused symbols
  2. Eliminate dead code
  3. Make functions and variables local
  4. Rename buf_acquire to tipc_buf_acquire since it is used in several files
Compile tested only.
This make break out of tree kernel modules that depend on TIPC routines.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Acked-by: Jon Maloy <jon.maloy@ericsson.com>
Acked-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tipc')
| -rw-r--r-- | include/net/tipc/tipc.h | 71 | ||||
| -rw-r--r-- | include/net/tipc/tipc_port.h | 2 | 
2 files changed, 0 insertions, 73 deletions
diff --git a/include/net/tipc/tipc.h b/include/net/tipc/tipc.h index 15af6dca0b4..1e0645e1eed 100644 --- a/include/net/tipc/tipc.h +++ b/include/net/tipc/tipc.h @@ -50,8 +50,6 @@   * TIPC operating mode routines   */ -u32 tipc_get_addr(void); -  #define TIPC_NOT_RUNNING  0  #define TIPC_NODE_MODE    1  #define TIPC_NET_MODE     2 @@ -62,8 +60,6 @@ int tipc_attach(unsigned int *userref, tipc_mode_event, void *usr_handle);  void tipc_detach(unsigned int userref); -int tipc_get_mode(void); -  /*   * TIPC port manipulation routines   */ @@ -153,12 +149,6 @@ int tipc_disconnect(u32 portref);  int tipc_shutdown(u32 ref); -int tipc_isconnected(u32 portref, int *isconnected); - -int tipc_peer(u32 portref, struct tipc_portid *peer); - -int tipc_ref_valid(u32 portref);  -  /*   * TIPC messaging routines   */ @@ -170,38 +160,12 @@ int tipc_send(u32 portref,  	      unsigned int num_sect,  	      struct iovec const *msg_sect); -int tipc_send_buf(u32 portref, -		  struct sk_buff *buf, -		  unsigned int dsz); -  int tipc_send2name(u32 portref,   		   struct tipc_name const *name,   		   u32 domain,  		   unsigned int num_sect,  		   struct iovec const *msg_sect); -int tipc_send_buf2name(u32 portref, -		       struct tipc_name const *name, -		       u32 domain, -		       struct sk_buff *buf, -		       unsigned int dsz); - -int tipc_forward2name(u32 portref,  -		      struct tipc_name const *name,  -		      u32 domain, -		      unsigned int section_count, -		      struct iovec const *msg_sect, -		      struct tipc_portid const *origin, -		      unsigned int importance); - -int tipc_forward_buf2name(u32 portref, -			  struct tipc_name const *name, -			  u32 domain, -			  struct sk_buff *buf, -			  unsigned int dsz, -			  struct tipc_portid const *orig, -			  unsigned int importance); -  int tipc_send2port(u32 portref,  		   struct tipc_portid const *dest,  		   unsigned int num_sect, @@ -212,46 +176,11 @@ int tipc_send_buf2port(u32 portref,  		       struct sk_buff *buf,  		       unsigned int dsz); -int tipc_forward2port(u32 portref, -		      struct tipc_portid const *dest, -		      unsigned int num_sect, -		      struct iovec const *msg_sect, -		      struct tipc_portid const *origin, -		      unsigned int importance); - -int tipc_forward_buf2port(u32 portref, -			  struct tipc_portid const *dest, -			  struct sk_buff *buf, -			  unsigned int dsz, -			  struct tipc_portid const *orig, -			  unsigned int importance); -  int tipc_multicast(u32 portref,   		   struct tipc_name_seq const *seq,   		   u32 domain,	/* currently unused */  		   unsigned int section_count,  		   struct iovec const *msg); - -#if 0 -int tipc_multicast_buf(u32 portref,  -		       struct tipc_name_seq const *seq,  -		       u32 domain, -		       void *buf, -		       unsigned int size); -#endif - -/* - * TIPC subscription routines - */ - -int tipc_ispublished(struct tipc_name const *name); - -/* - * Get number of available nodes within specified domain (excluding own node) - */ - -unsigned int tipc_available_nodes(const u32 domain); -  #endif  #endif diff --git a/include/net/tipc/tipc_port.h b/include/net/tipc/tipc_port.h index c54917cbfa4..1893aaf4942 100644 --- a/include/net/tipc/tipc_port.h +++ b/include/net/tipc/tipc_port.h @@ -88,8 +88,6 @@ void tipc_acknowledge(u32 port_ref,u32 ack);  struct tipc_port *tipc_get_port(const u32 ref); -void *tipc_get_handle(const u32 ref); -  /*   * The following routines require that the port be locked on entry   */  |