diff options
author | Steve French <sfrench@us.ibm.com> | 2012-01-14 00:59:13 -0500 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2012-01-14 00:59:13 -0500 |
commit | dcd169b761d52e3f9122e30442b83863bdf1d9d9 (patch) | |
tree | 5e79741f1865a3aef840e68d7db9e7ed4d685b5a /net/tipc/node.h | |
parent | aaf015890754d58dcb71a4aa44ed246bb082bcf6 (diff) | |
parent | 7250170c9ed00f3b74b11b98afefab45020672dd (diff) |
Merge branch 'master' of git+ssh://git.samba.org/data/git/sfrench/cifs-2.6
Diffstat (limited to 'net/tipc/node.h')
-rw-r--r-- | net/tipc/node.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h index 4f15cb40aaa4..0b1c5f8b6996 100644 --- a/net/tipc/node.h +++ b/net/tipc/node.h | |||
@@ -79,8 +79,8 @@ struct tipc_node { | |||
79 | struct hlist_node hash; | 79 | struct hlist_node hash; |
80 | struct list_head list; | 80 | struct list_head list; |
81 | struct list_head nsub; | 81 | struct list_head nsub; |
82 | struct link *active_links[2]; | 82 | struct tipc_link *active_links[2]; |
83 | struct link *links[MAX_BEARERS]; | 83 | struct tipc_link *links[MAX_BEARERS]; |
84 | int link_cnt; | 84 | int link_cnt; |
85 | int working_links; | 85 | int working_links; |
86 | int block_setup; | 86 | int block_setup; |
@@ -117,10 +117,10 @@ extern u32 tipc_own_tag; | |||
117 | struct tipc_node *tipc_node_find(u32 addr); | 117 | struct tipc_node *tipc_node_find(u32 addr); |
118 | struct tipc_node *tipc_node_create(u32 addr); | 118 | struct tipc_node *tipc_node_create(u32 addr); |
119 | void tipc_node_delete(struct tipc_node *n_ptr); | 119 | void tipc_node_delete(struct tipc_node *n_ptr); |
120 | void tipc_node_attach_link(struct tipc_node *n_ptr, struct link *l_ptr); | 120 | void tipc_node_attach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr); |
121 | void tipc_node_detach_link(struct tipc_node *n_ptr, struct link *l_ptr); | 121 | void tipc_node_detach_link(struct tipc_node *n_ptr, struct tipc_link *l_ptr); |
122 | void tipc_node_link_down(struct tipc_node *n_ptr, struct link *l_ptr); | 122 | void tipc_node_link_down(struct tipc_node *n_ptr, struct tipc_link *l_ptr); |
123 | void tipc_node_link_up(struct tipc_node *n_ptr, struct link *l_ptr); | 123 | void tipc_node_link_up(struct tipc_node *n_ptr, struct tipc_link *l_ptr); |
124 | int tipc_node_active_links(struct tipc_node *n_ptr); | 124 | int tipc_node_active_links(struct tipc_node *n_ptr); |
125 | int tipc_node_redundant_links(struct tipc_node *n_ptr); | 125 | int tipc_node_redundant_links(struct tipc_node *n_ptr); |
126 | int tipc_node_is_up(struct tipc_node *n_ptr); | 126 | int tipc_node_is_up(struct tipc_node *n_ptr); |