diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2010-12-30 08:20:30 +0300 | 
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2010-12-30 08:21:47 +0300 | 
| commit | d392da5207352f09030e95d9ea335a4225667ec0 (patch) | |
| tree | 7d6cd1932afcad0a5619a5c504a6d93ca318187c /net/tipc/node.h | |
| parent | e39d5ef678045d61812c1401f04fe8edb14d6359 (diff) | |
| parent | 387c31c7e5c9805b0aef8833d1731a5fe7bdea14 (diff) | |
| download | linux-d392da5207352f09030e95d9ea335a4225667ec0.tar.xz | |
Merge v2.6.37-rc8 into powerpc/next
Diffstat (limited to 'net/tipc/node.h')
| -rw-r--r-- | net/tipc/node.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h index 6f990da5d143..fff331b2d26c 100644 --- a/net/tipc/node.h +++ b/net/tipc/node.h @@ -52,6 +52,7 @@   * @active_links: pointers to active links to node   * @links: pointers to all links to node   * @working_links: number of working links to node (both active and standby) + * @cleanup_required: non-zero if cleaning up after a prior loss of contact   * @link_cnt: number of links to node   * @permit_changeover: non-zero if node has redundant links to this system   * @routers: bitmap (used for multicluster communication) @@ -78,6 +79,7 @@ struct tipc_node {  	struct link *links[MAX_BEARERS];  	int link_cnt;  	int working_links; +	int cleanup_required;  	int permit_changeover;  	u32 routers[512/32];  	int last_router; @@ -94,7 +96,6 @@ struct tipc_node {  	} bclink;  }; -extern struct tipc_node *tipc_nodes;  extern u32 tipc_own_tag;  struct tipc_node *tipc_node_create(u32 addr);  | 
