Lines Matching refs:epb
726 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local
729 epb = &ep->base; in __sctp_hash_endpoint()
731 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_hash_endpoint()
732 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint()
735 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint()
752 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local
754 epb = &ep->base; in __sctp_unhash_endpoint()
756 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_unhash_endpoint()
758 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint()
761 hlist_del_init(&epb->node); in __sctp_unhash_endpoint()
778 struct sctp_ep_common *epb; in __sctp_rcv_lookup_endpoint() local
785 sctp_for_each_hentry(epb, &head->chain) { in __sctp_rcv_lookup_endpoint()
786 ep = sctp_ep(epb); in __sctp_rcv_lookup_endpoint()