Home
last modified time | relevance | path

Searched refs:epb (Results 1 – 3 of 3) sorted by relevance

/net/sctp/
Dinput.c697 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local
700 epb = &ep->base; in __sctp_hash_endpoint()
702 epb->hashent = sctp_ep_hashfn(epb->bind_addr.port); in __sctp_hash_endpoint()
703 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint()
706 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint()
722 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local
724 epb = &ep->base; in __sctp_unhash_endpoint()
726 if (hlist_unhashed(&epb->node)) in __sctp_unhash_endpoint()
729 epb->hashent = sctp_ep_hashfn(epb->bind_addr.port); in __sctp_unhash_endpoint()
731 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint()
[all …]
Dproc.c125 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument
133 if (epb->type == SCTP_EP_TYPE_ASSOCIATION) { in sctp_seq_dump_local_addrs()
134 asoc = sctp_assoc(epb); in sctp_seq_dump_local_addrs()
139 list_for_each_entry(laddr, &epb->bind_addr.address_list, list) { in sctp_seq_dump_local_addrs()
201 struct sctp_ep_common *epb; in sctp_eps_seq_show() local
213 sctp_for_each_hentry(epb, node, &head->chain) { in sctp_eps_seq_show()
214 ep = sctp_ep(epb); in sctp_eps_seq_show()
215 sk = epb->sk; in sctp_eps_seq_show()
218 epb->bind_addr.port, in sctp_eps_seq_show()
221 sctp_seq_dump_local_addrs(seq, epb); in sctp_eps_seq_show()
[all …]
Dendpointola.c331 struct sctp_ep_common *epb; in __sctp_endpoint_lookup_assoc() local
342 sctp_for_each_hentry(epb, node, &head->chain) { in __sctp_endpoint_lookup_assoc()
343 asoc = sctp_assoc(epb); in __sctp_endpoint_lookup_assoc()