Searched refs:epb (Results 1 – 9 of 9) sorted by relevance
/linux-4.4.14/net/sctp/ |
D | proc.c | 121 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument 129 if (epb->type == SCTP_EP_TYPE_ASSOCIATION) { in sctp_seq_dump_local_addrs() 130 asoc = sctp_assoc(epb); in sctp_seq_dump_local_addrs() 142 list_for_each_entry_rcu(laddr, &epb->bind_addr.address_list, list) { in sctp_seq_dump_local_addrs() 212 struct sctp_ep_common *epb; in sctp_eps_seq_show() local 223 sctp_for_each_hentry(epb, &head->chain) { in sctp_eps_seq_show() 224 ep = sctp_ep(epb); in sctp_eps_seq_show() 225 sk = epb->sk; in sctp_eps_seq_show() 230 epb->bind_addr.port, in sctp_eps_seq_show() 234 sctp_seq_dump_local_addrs(seq, epb); in sctp_eps_seq_show() [all …]
|
D | input.c | 712 struct sctp_ep_common *epb; in __sctp_hash_endpoint() local 715 epb = &ep->base; in __sctp_hash_endpoint() 717 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_hash_endpoint() 718 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_hash_endpoint() 721 hlist_add_head(&epb->node, &head->chain); in __sctp_hash_endpoint() 738 struct sctp_ep_common *epb; in __sctp_unhash_endpoint() local 740 epb = &ep->base; in __sctp_unhash_endpoint() 742 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port); in __sctp_unhash_endpoint() 744 head = &sctp_ep_hashtable[epb->hashent]; in __sctp_unhash_endpoint() 747 hlist_del_init(&epb->node); in __sctp_unhash_endpoint() [all …]
|
D | endpointola.c | 329 struct sctp_ep_common *epb; in __sctp_endpoint_lookup_assoc() local 347 sctp_for_each_hentry(epb, &head->chain) { in __sctp_endpoint_lookup_assoc() 348 tmp = sctp_assoc(epb); in __sctp_endpoint_lookup_assoc()
|
/linux-4.4.14/include/linux/ |
D | dqblk_qtree.h | 47 unsigned int epb = info->dqi_usable_bs >> 2; in qtree_depth() local 48 unsigned long long entries = epb; in qtree_depth() 52 entries *= epb; in qtree_depth()
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | intel.c | 377 u64 epb; in init_intel_energy_perf() local 386 rdmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb); in init_intel_energy_perf() 387 if ((epb & 0xF) != ENERGY_PERF_BIAS_PERFORMANCE) in init_intel_energy_perf() 392 epb = (epb & ~0xF) | ENERGY_PERF_BIAS_NORMAL; in init_intel_energy_perf() 393 wrmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb); in init_intel_energy_perf()
|
/linux-4.4.14/fs/nilfs2/ |
D | alloc.c | 743 const unsigned epb = NILFS_MDT(inode)->mi_entries_per_block; in nilfs_palloc_freev() local 772 entry_start = rounddown(group_offset, epb); in nilfs_palloc_freev() 791 group_offset < entry_start + epb) { in nilfs_palloc_freev() 798 end = entry_start + epb; in nilfs_palloc_freev() 810 entry_start = rounddown(group_offset, epb); in nilfs_palloc_freev()
|
/linux-4.4.14/fs/ocfs2/ |
D | quota_local.c | 57 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_block() local 59 return ol_quota_chunk_block(sb, c) + 1 + off / epb; in ol_dqblk_block() 64 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_block_off() local 66 return (off % epb) * sizeof(struct ocfs2_local_disk_dqblk); in ol_dqblk_block_off() 84 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_chunk_off() local 87 ol_quota_chunk_block(sb, c) - 1) * epb in ol_dqblk_chunk_off() 1103 int epb = ol_quota_entries_per_block(sb); in ocfs2_extend_local_quota_file() local 1199 *offset = chunk_blocks * epb; in ocfs2_extend_local_quota_file()
|
/linux-4.4.14/fs/quota/ |
D | quota_tree.c | 27 unsigned int epb = info->dqi_usable_bs >> 2; in get_index() local 32 id /= epb; in get_index() 33 return id % epb; in get_index()
|
/linux-4.4.14/include/net/sctp/ |
D | sctp.h | 541 #define sctp_for_each_hentry(epb, head) \ argument 542 hlist_for_each_entry(epb, head, node)
|