Lines Matching defs:tipc_net
89 struct tipc_net { struct
90 u8 node_id[NODE_ID_LEN];
91 u32 node_addr;
92 u32 trial_addr;
93 unsigned long addr_trial_end;
94 char node_id_string[NODE_ID_STR_LEN];
95 int net_id;
96 int random;
97 bool legacy_addr_format;
100 spinlock_t node_list_lock;
101 struct hlist_head node_htable[NODE_HTABLE_SIZE];
102 struct list_head node_list;
103 u32 num_nodes;
104 u32 num_links;
107 struct tipc_monitor *monitors[MAX_BEARERS];
108 int mon_threshold;
111 struct tipc_bearer __rcu *bearer_list[MAX_BEARERS + 1];
114 spinlock_t bclock;
115 struct tipc_bc_base *bcbase;
139 static inline struct tipc_net *tipc_net(struct net *net) in tipc_net() argument