Lines Matching defs:tipc_link
144 struct tipc_link { struct
145 u32 addr;
146 char name[TIPC_MAX_LINK_NAME];
147 struct tipc_media_addr media_addr;
148 struct timer_list timer;
149 struct tipc_node *owner;
150 struct kref ref;
153 unsigned int flags;
154 u32 checkpoint;
155 u32 peer_session;
156 u32 peer_bearer_id;
157 u32 bearer_id;
158 u32 tolerance;
159 unsigned long cont_intv;
160 u32 abort_limit;
161 int state;
162 u32 fsm_msg_cnt;
163 struct {
166 } proto_msg;
167 struct tipc_msg *pmsg;
168 u32 priority;
169 char net_plane;
170 u16 synch_point;
173 u16 failover_pkts;
174 u16 failover_checkpt;
175 struct sk_buff *failover_skb;
178 u16 mtu;
179 u16 advertised_mtu;
182 struct sk_buff_head transmq;
183 struct sk_buff_head backlogq;
184 struct {
187 } backlog[5];
188 u32 next_out_no;
212 struct tipc_link *tipc_link_create(struct tipc_node *n_ptr, argument