Lines Matching defs:tipc_net
94 struct tipc_net { struct
95 u8 node_id[NODE_ID_LEN];
96 u32 node_addr;
97 u32 trial_addr;
98 unsigned long addr_trial_end;
99 char node_id_string[NODE_ID_STR_LEN];
100 int net_id;
101 int random;
102 bool legacy_addr_format;
105 spinlock_t node_list_lock;
106 struct hlist_head node_htable[NODE_HTABLE_SIZE];
107 struct list_head node_list;
108 u32 num_nodes;
109 u32 num_links;
112 struct tipc_monitor *monitors[MAX_BEARERS];
113 int mon_threshold;
116 struct tipc_bearer __rcu *bearer_list[MAX_BEARERS + 1];
119 spinlock_t bclock;
120 struct tipc_bc_base *bcbase;
121 struct tipc_link *bcl;
124 struct rhashtable sk_rht;
150 static inline struct tipc_net *tipc_net(struct net *net) in tipc_net() argument