diff options
author | Allan Stephens <Allan.Stephens@windriver.com> | 2010-12-31 13:59:18 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-01 16:57:48 -0500 |
commit | 51a8e4dee7653698ba4c6e7de71053665f075273 (patch) | |
tree | 94d90bd650f0dd8ab542cc5c948d6ddf6501a107 /net/tipc/cluster.h | |
parent | 08c80e9a031df0a8f0269477a32f5eae47d7a146 (diff) |
tipc: Remove prototype code for supporting inter-cluster routing
Eliminates routines and data structures that were intended to allow
TIPC to route messages to other clusters. Currently, TIPC supports only
networks consisting of a single cluster within a single zone, so this
code is unnecessary.
Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/cluster.h')
-rw-r--r-- | net/tipc/cluster.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/tipc/cluster.h b/net/tipc/cluster.h index aa1fd6ab4d11..e4b6e4e27371 100644 --- a/net/tipc/cluster.h +++ b/net/tipc/cluster.h | |||
@@ -57,20 +57,12 @@ struct cluster { | |||
57 | extern struct tipc_node **tipc_local_nodes; | 57 | extern struct tipc_node **tipc_local_nodes; |
58 | extern struct tipc_node_map tipc_cltr_bcast_nodes; | 58 | extern struct tipc_node_map tipc_cltr_bcast_nodes; |
59 | 59 | ||
60 | void tipc_cltr_remove_as_router(struct cluster *c_ptr, u32 router); | ||
61 | void tipc_cltr_send_ext_routes(struct cluster *c_ptr, u32 dest); | ||
62 | struct tipc_node *tipc_cltr_select_node(struct cluster *c_ptr, u32 selector); | ||
63 | u32 tipc_cltr_select_router(struct cluster *c_ptr, u32 ref); | ||
64 | void tipc_cltr_recv_routing_table(struct sk_buff *buf); | ||
65 | struct cluster *tipc_cltr_create(u32 addr); | 60 | struct cluster *tipc_cltr_create(u32 addr); |
66 | void tipc_cltr_delete(struct cluster *c_ptr); | 61 | void tipc_cltr_delete(struct cluster *c_ptr); |
67 | void tipc_cltr_attach_node(struct cluster *c_ptr, struct tipc_node *n_ptr); | 62 | void tipc_cltr_attach_node(struct cluster *c_ptr, struct tipc_node *n_ptr); |
68 | void tipc_cltr_broadcast(struct sk_buff *buf); | 63 | void tipc_cltr_broadcast(struct sk_buff *buf); |
69 | int tipc_cltr_init(void); | 64 | int tipc_cltr_init(void); |
70 | 65 | ||
71 | void tipc_cltr_bcast_new_route(struct cluster *c_ptr, u32 dest, u32 lo, u32 hi); | ||
72 | void tipc_cltr_bcast_lost_route(struct cluster *c_ptr, u32 dest, u32 lo, u32 hi); | ||
73 | |||
74 | static inline struct cluster *tipc_cltr_find(u32 addr) | 66 | static inline struct cluster *tipc_cltr_find(u32 addr) |
75 | { | 67 | { |
76 | if (!in_own_cluster(addr)) | 68 | if (!in_own_cluster(addr)) |