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