Home
last modified time | relevance | path

Searched refs:pentry (Results 1 – 25 of 25) sorted by relevance

/OK3568_Linux_fs/kernel/arch/x86/platform/intel-mid/
H A Dsfi.c74 struct sfi_timer_table_entry *pentry; in sfi_parse_mtmr() local
82 pentry = (struct sfi_timer_table_entry *) sb->pentry; in sfi_parse_mtmr()
83 totallen = sfi_mtimer_num * sizeof(*pentry); in sfi_parse_mtmr()
84 memcpy(sfi_mtimer_array, pentry, totallen); in sfi_parse_mtmr()
88 pentry = sfi_mtimer_array; in sfi_parse_mtmr()
89 for (totallen = 0; totallen < sfi_mtimer_num; totallen++, pentry++) { in sfi_parse_mtmr()
91 totallen, (u32)pentry->phys_addr, in sfi_parse_mtmr()
92 pentry->freq_hz, pentry->irq); in sfi_parse_mtmr()
97 mp_irq.srcbusirq = pentry->irq; /* IRQ */ in sfi_parse_mtmr()
99 mp_irq.dstirq = pentry->irq; in sfi_parse_mtmr()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/platform/sfi/
H A Dsfi.c41 struct sfi_cpu_table_entry *pentry; in sfi_parse_cpus() local
47 pentry = (struct sfi_cpu_table_entry *)sb->pentry; in sfi_parse_cpus()
50 mp_sfi_register_lapic(pentry->apic_id); in sfi_parse_cpus()
51 pentry++; in sfi_parse_cpus()
64 struct sfi_apic_table_entry *pentry; in sfi_parse_ioapic() local
73 pentry = (struct sfi_apic_table_entry *)sb->pentry; in sfi_parse_ioapic()
76 mp_register_ioapic(i, pentry->phys_addr, gsi_top, &cfg); in sfi_parse_ioapic()
77 pentry++; in sfi_parse_ioapic()
/OK3568_Linux_fs/kernel/drivers/crypto/marvell/octeontx/
H A Dotx_cptvf_reqmgr.c86 static inline void free_pentry(struct otx_cpt_pending_entry *pentry) in free_pentry() argument
88 pentry->completion_addr = NULL; in free_pentry()
89 pentry->info = NULL; in free_pentry()
90 pentry->callback = NULL; in free_pentry()
91 pentry->areq = NULL; in free_pentry()
92 pentry->resume_sender = false; in free_pentry()
93 pentry->busy = false; in free_pentry()
302 struct otx_cpt_pending_entry *pentry = NULL; in process_request() local
325 pentry = get_free_pending_entry(pqueue, pqueue->qlen); in process_request()
327 while (unlikely(!pentry) && retry--) { in process_request()
[all …]
H A Dotx_cptvf_reqmgr.h175 struct otx_cpt_pending_entry *pentry; member
/OK3568_Linux_fs/kernel/drivers/crypto/cavium/cpt/
H A Dcptvf_reqmanager.c334 struct pending_entry *pentry = NULL; in process_pending_queue() local
341 pentry = &pqueue->head[pqueue->front]; in process_pending_queue()
342 if (unlikely(!pentry->busy)) { in process_pending_queue()
347 info = (struct cpt_info_buffer *)pentry->post_arg; in process_pending_queue()
355 status = (union cpt_res_s *)pentry->completion_addr; in process_pending_queue()
362 pentry->completion_addr = NULL; in process_pending_queue()
363 pentry->busy = false; in process_pending_queue()
365 pentry->post_arg = NULL; in process_pending_queue()
376 pentry->completion_addr = NULL; in process_pending_queue()
377 pentry->busy = false; in process_pending_queue()
[all …]
H A Drequest_manager.h105 struct pending_entry *pentry; member
/OK3568_Linux_fs/kernel/drivers/cpufreq/
H A Dsfi-cpufreq.c26 struct sfi_freq_table_entry *pentry; in sfi_parse_freq() local
37 pentry = (struct sfi_freq_table_entry *)sb->pentry; in sfi_parse_freq()
38 totallen = num_freq_table_entries * sizeof(*pentry); in sfi_parse_freq()
40 sfi_cpufreq_array = kmemdup(pentry, totallen, GFP_KERNEL); in sfi_parse_freq()
/OK3568_Linux_fs/kernel/kernel/trace/
H A Dtrace_events_inject.c192 static int parse_entry(char *str, struct trace_event_call *call, void **pentry) in parse_entry() argument
202 *pentry = entry; in parse_entry()
225 *pentry = krealloc(entry, entry_size, GFP_KERNEL); in parse_entry()
226 if (!*pentry) { in parse_entry()
230 entry = *pentry; in parse_entry()
/OK3568_Linux_fs/kernel/arch/x86/platform/intel-mid/device_libs/
H A Dplatform_mrfld_power_btn.c64 struct sfi_device_table_entry *pentry = info; in mrfld_power_btn_platform_data() local
66 res->start = res->end = pentry->irq; in mrfld_power_btn_platform_data()
/OK3568_Linux_fs/u-boot/cmd/
H A Dmtdparts.c1087 struct list_head *pentry, *dentry; in generate_mtdparts() local
1121 list_for_each(pentry, &dev->parts) { in generate_mtdparts()
1122 part = list_entry(pentry, struct part_info, link); in generate_mtdparts()
1253 struct list_head *dentry, *pentry; local
1273 list_for_each(pentry, &dev->parts) {
1277 part = list_entry(pentry, struct part_info, link);
1290 list_for_each(pentry, &dev->parts) {
1291 part = list_entry(pentry, struct part_info, link);
1354 struct list_head *dentry, *pentry; local
1363 list_for_each(pentry, &(*dev)->parts) {
[all …]
/OK3568_Linux_fs/kernel/kernel/
H A Dpadata.c939 struct padata_sysfs_entry *pentry; in padata_sysfs_show() local
943 pentry = attr2pentry(attr); in padata_sysfs_show()
944 if (pentry->show) in padata_sysfs_show()
945 ret = pentry->show(pinst, attr, buf); in padata_sysfs_show()
954 struct padata_sysfs_entry *pentry; in padata_sysfs_store() local
958 pentry = attr2pentry(attr); in padata_sysfs_store()
959 if (pentry->show) in padata_sysfs_store()
960 ret = pentry->store(pinst, attr, buf, count); in padata_sysfs_store()
/OK3568_Linux_fs/kernel/arch/powerpc/kvm/
H A De500.c29 struct id **pentry; member
79 entry->pentry = this_cpu_ptr(&pcpu_sids.entry[sid]); in local_sid_setup_one()
108 entry->pentry == this_cpu_ptr(&pcpu_sids.entry[entry->val])) in local_sid_lookup()
170 idt->id[as][pid][pr].pentry = NULL; in kvmppc_e500_id_table_reset_one()
/OK3568_Linux_fs/u-boot/arch/x86/cpu/tangier/
H A Dsdram.c87 sbh = (struct sfi_table_header *)(unsigned long)sb->pentry[i]; in sfi_search_mmap()
98 for (i = 0, mentry = (struct sfi_mem_entry *)sb->pentry; \
/OK3568_Linux_fs/kernel/drivers/sfi/
H A Dsfi_core.c267 th = sfi_check_table(syst_va->pentry[i], key); in sfi_get_table()
324 ret = sfi_check_table(syst_va->pentry[i], &key); in sfi_parse_syst()
476 sfi_sysfs_install_table(syst_va->pentry[i]); in sfi_sysfs_init()
/OK3568_Linux_fs/kernel/net/bluetooth/
H A D6lowpan.c497 struct lowpan_peer *pentry; in send_mcast_pkt() local
505 list_for_each_entry_rcu(pentry, &dev->peers, list) { in send_mcast_pkt()
512 &pentry->chan->dst, pentry->chan->dst_type, in send_mcast_pkt()
513 &pentry->peer_addr, pentry->chan); in send_mcast_pkt()
514 ret = send_pkt(pentry->chan, local_skb, netdev); in send_mcast_pkt()
/OK3568_Linux_fs/kernel/fs/proc/
H A Dproc_sysctl.c84 struct ctl_table **pentry);
366 struct ctl_table_header **phead, struct ctl_table **pentry) in first_entry() argument
380 *pentry = entry; in first_entry()
383 static void next_entry(struct ctl_table_header **phead, struct ctl_table **pentry) in next_entry() argument
386 struct ctl_table *entry = *pentry; in next_entry()
400 *pentry = entry; in next_entry()
1049 struct ctl_table **pentry) in sysctl_follow_link() argument
1060 root = (*pentry)->data; in sysctl_follow_link()
1066 const char *procname = (*pentry)->procname; in sysctl_follow_link()
1073 *pentry = entry; in sysctl_follow_link()
/OK3568_Linux_fs/kernel/mm/
H A Dswap_state.c843 pte_t *pte, pentry; in swap_vma_readahead() local
856 pentry = *pte; in swap_vma_readahead()
857 if (pte_none(pentry)) in swap_vma_readahead()
859 if (pte_present(pentry)) in swap_vma_readahead()
861 entry = pte_to_swp_entry(pentry); in swap_vma_readahead()
/OK3568_Linux_fs/kernel/include/linux/
H A Dsfi.h106 u64 pentry[1]; member
/OK3568_Linux_fs/u-boot/arch/x86/include/asm/
H A Dsfi.h51 u64 pentry[1]; member
/OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/mlan/
H A Dmlan_misc.c5491 mef_entry_t *pentry; in wlan_set_mef_entry() local
5527 for (i = 0, pentry = pmef->pentry; i < pmef->entry_num; i++, pentry++) { in wlan_set_mef_entry()
5530 entry_hdr->mode = pentry->mode; in wlan_set_mef_entry()
5531 entry_hdr->action = pentry->action; in wlan_set_mef_entry()
5536 ret = wlan_generate_mef_filter_stack(pmadapter, stack, pentry); in wlan_set_mef_entry()
5574 mef_entry_t *pentry = MNULL; in wlan_process_mef_cfg_cmd() local
5595 MLAN_MEM_DEF, (t_u8 **)&mef.pentry); in wlan_process_mef_cfg_cmd()
5596 if (ret != MLAN_STATUS_SUCCESS || mef.pentry == MNULL) { in wlan_process_mef_cfg_cmd()
5606 memset(pmadapter, mef.pentry, 0, sizeof(mef_entry_t) * entry_num); in wlan_process_mef_cfg_cmd()
5607 pentry = mef.pentry; in wlan_process_mef_cfg_cmd()
[all …]
H A Dmlan_main.h1851 mef_entry_t *pentry;
/OK3568_Linux_fs/u-boot/common/
H A Dfdt_support.c903 struct list_head *pentry; in fdt_node_set_part_info() local
923 list_for_each_prev(pentry, &dev->parts) { in fdt_node_set_part_info()
926 part = list_entry(pentry, struct part_info, link); in fdt_node_set_part_info()
/OK3568_Linux_fs/kernel/drivers/scsi/lpfc/
H A Dlpfc_debugfs.c4206 uint32_t *pentry; in lpfc_idiag_queacc_read_qe() local
4216 pentry = lpfc_sli4_qe(pque, index); in lpfc_idiag_queacc_read_qe()
4219 "%08x ", *pentry); in lpfc_idiag_queacc_read_qe()
4220 pentry++; in lpfc_idiag_queacc_read_qe()
4333 uint32_t *pentry; in lpfc_idiag_queacc_write() local
4537 pentry = lpfc_sli4_qe(pque, index); in lpfc_idiag_queacc_write()
4538 pentry += offset; in lpfc_idiag_queacc_write()
4540 *pentry = value; in lpfc_idiag_queacc_write()
4542 *pentry |= value; in lpfc_idiag_queacc_write()
4544 *pentry &= ~value; in lpfc_idiag_queacc_write()
/OK3568_Linux_fs/kernel/net/bridge/
H A Dbr_mdb.c758 struct net_device **pdev, struct br_mdb_entry **pentry, in br_mdb_parse() argument
804 *pentry = entry; in br_mdb_parse()
/OK3568_Linux_fs/kernel/fs/ext4/
H A Dxattr.c283 xattr_find_entry(struct inode *inode, struct ext4_xattr_entry **pentry, in xattr_find_entry() argument
293 for (entry = *pentry; !IS_LAST_ENTRY(entry); entry = next) { in xattr_find_entry()
307 *pentry = entry; in xattr_find_entry()