Lines Matching refs:b_ptr
224 struct tipc_bearer *b_ptr, in tipc_link_create() argument
241 if (n_ptr->links[b_ptr->identity]) { in tipc_link_create()
244 b_ptr->name, addr_string); in tipc_link_create()
255 if_name = strchr(b_ptr->name, ':') + 1; in tipc_link_create()
266 l_ptr->bearer_id = b_ptr->identity; in tipc_link_create()
267 link_set_supervision_props(l_ptr, b_ptr->tolerance); in tipc_link_create()
276 msg_set_bearer_id(msg, b_ptr->identity); in tipc_link_create()
278 l_ptr->net_plane = b_ptr->net_plane; in tipc_link_create()
279 l_ptr->advertised_mtu = b_ptr->mtu; in tipc_link_create()
281 l_ptr->priority = b_ptr->priority; in tipc_link_create()
282 tipc_link_set_queue_limits(l_ptr, b_ptr->window); in tipc_link_create()
1038 void tipc_rcv(struct net *net, struct sk_buff *skb, struct tipc_bearer *b_ptr) in tipc_rcv() argument
1061 tipc_disc_rcv(net, skb, b_ptr); in tipc_rcv()
1079 l_ptr = n_ptr->links[b_ptr->identity]; in tipc_rcv()
1813 struct tipc_bearer *b_ptr; in link_print() local
1816 b_ptr = rcu_dereference_rtnl(tn->bearer_list[l_ptr->bearer_id]); in link_print()
1817 if (b_ptr) in link_print()
1818 pr_info("%s Link %x<%s>:", str, l_ptr->addr, b_ptr->name); in link_print()