Lines Matching refs:epb
726 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local
728 epb = &ep->base; in __sctp_hash_endpoint()
729 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_hash_endpoint()
730 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint()
769 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint()
791 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local
793 epb = &ep->base; in __sctp_unhash_endpoint()
795 epb->hashent = sctp_ep_hashfn(sock_net(sk), epb->bind_addr.port); in __sctp_unhash_endpoint()
797 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint()
803 hlist_del_init(&epb->node); in __sctp_unhash_endpoint()
836 struct sctp_ep_common *epb; in __sctp_rcv_lookup_endpoint() local
846 sctp_for_each_hentry(epb, &head->chain) { in __sctp_rcv_lookup_endpoint()
847 ep = sctp_ep(epb); in __sctp_rcv_lookup_endpoint()