Lines Matching refs:epb
749 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local
751 epb = &ep->base; in __sctp_hash_endpoint()
752 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_hash_endpoint()
753 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint()
792 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint()
814 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local
816 epb = &ep->base; in __sctp_unhash_endpoint()
818 epb->hashent = sctp_ep_hashfn(sock_net(sk), epb->bind_addr.port); in __sctp_unhash_endpoint()
820 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint()
826 hlist_del_init(&epb->node); in __sctp_unhash_endpoint()
859 struct sctp_ep_common *epb; in __sctp_rcv_lookup_endpoint() local
869 sctp_for_each_hentry(epb, &head->chain) { in __sctp_rcv_lookup_endpoint()
870 ep = sctp_ep(epb); in __sctp_rcv_lookup_endpoint()