Home
last modified time | relevance | path

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

/Linux-v4.19/net/sctp/
Dproc.c92 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument
100 if (epb->type == SCTP_EP_TYPE_ASSOCIATION) { in sctp_seq_dump_local_addrs()
101 asoc = sctp_assoc(epb); in sctp_seq_dump_local_addrs()
113 list_for_each_entry_rcu(laddr, &epb->bind_addr.address_list, list) { in sctp_seq_dump_local_addrs()
179 struct sctp_ep_common *epb; in sctp_eps_seq_show() local
189 sctp_for_each_hentry(epb, &head->chain) { in sctp_eps_seq_show()
190 ep = sctp_ep(epb); in sctp_eps_seq_show()
191 sk = epb->sk; in sctp_eps_seq_show()
196 epb->bind_addr.port, in sctp_eps_seq_show()
200 sctp_seq_dump_local_addrs(seq, epb); in sctp_eps_seq_show()
[all …]
Dinput.c726 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()
[all …]
Dsocket.c5048 struct sctp_ep_common *epb; in sctp_for_each_endpoint() local
5054 sctp_for_each_hentry(epb, &head->chain) { in sctp_for_each_endpoint()
5055 err = cb(sctp_ep(epb), p); in sctp_for_each_endpoint()
/Linux-v4.19/include/linux/
Ddqblk_qtree.h49 unsigned int epb = info->dqi_usable_bs >> 2; in qtree_depth() local
50 unsigned long long entries = epb; in qtree_depth()
54 entries *= epb; in qtree_depth()
/Linux-v4.19/arch/x86/kernel/cpu/
Dintel.c601 u64 epb; in init_intel_energy_perf() local
610 rdmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb); in init_intel_energy_perf()
611 if ((epb & 0xF) != ENERGY_PERF_BIAS_PERFORMANCE) in init_intel_energy_perf()
616 epb = (epb & ~0xF) | ENERGY_PERF_BIAS_NORMAL; in init_intel_energy_perf()
617 wrmsrl(MSR_IA32_ENERGY_PERF_BIAS, epb); in init_intel_energy_perf()
/Linux-v4.19/fs/quota/
Dquota_tree.c27 unsigned int epb = info->dqi_usable_bs >> 2; in __get_index() local
31 id /= epb; in __get_index()
32 return id % epb; in __get_index()
684 unsigned int epb = info->dqi_usable_bs >> 2; in find_next_id() local
692 level_inc *= epb; in find_next_id()
700 for (i = __get_index(info, *id, depth); i < epb; i++) { in find_next_id()
713 if (i == epb) { in find_next_id()
/Linux-v4.19/fs/nilfs2/
Dalloc.c733 const unsigned int epb = NILFS_MDT(inode)->mi_entries_per_block; in nilfs_palloc_freev() local
762 entry_start = rounddown(group_offset, epb); in nilfs_palloc_freev()
781 group_offset < entry_start + epb) { in nilfs_palloc_freev()
788 end = entry_start + epb; in nilfs_palloc_freev()
800 entry_start = rounddown(group_offset, epb); in nilfs_palloc_freev()
/Linux-v4.19/fs/ocfs2/
Dquota_local.c58 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_block() local
60 return ol_quota_chunk_block(sb, c) + 1 + off / epb; in ol_dqblk_block()
65 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_block_off() local
67 return (off % epb) * sizeof(struct ocfs2_local_disk_dqblk); in ol_dqblk_block_off()
85 int epb = ol_quota_entries_per_block(sb); in ol_dqblk_chunk_off() local
88 ol_quota_chunk_block(sb, c) - 1) * epb in ol_dqblk_chunk_off()
1101 int epb = ol_quota_entries_per_block(sb); in ocfs2_extend_local_quota_file() local
1197 *offset = chunk_blocks * epb; in ocfs2_extend_local_quota_file()
/Linux-v4.19/drivers/cpufreq/
Dintel_pstate.c500 u64 epb; in intel_pstate_get_epb() local
506 ret = rdmsrl_on_cpu(cpu_data->cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb); in intel_pstate_get_epb()
510 return (s16)(epb & 0x0f); in intel_pstate_get_epb()
539 u64 epb; in intel_pstate_set_epb() local
545 ret = rdmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, &epb); in intel_pstate_set_epb()
549 epb = (epb & ~0x0f) | pref; in intel_pstate_set_epb()
550 wrmsrl_on_cpu(cpu, MSR_IA32_ENERGY_PERF_BIAS, epb); in intel_pstate_set_epb()
/Linux-v4.19/include/net/sctp/
Dsctp.h524 #define sctp_for_each_hentry(epb, head) \ argument
525 hlist_for_each_entry(epb, head, node)
/Linux-v4.19/fs/ext4/
Dindirect.c561 unsigned epb = inode->i_sb->s_blocksize / sizeof(u32); in ext4_ind_map_blocks() local
572 count = count * epb + (epb - offsets[i] - 1); in ext4_ind_map_blocks()