/linux-4.4.14/arch/powerpc/kernel/ |
D | eeh_pe.c | 61 struct eeh_pe *pe; in eeh_pe_alloc() local 71 pe = kzalloc(alloc_size, GFP_KERNEL); in eeh_pe_alloc() 72 if (!pe) return NULL; in eeh_pe_alloc() 75 pe->type = type; in eeh_pe_alloc() 76 pe->phb = phb; in eeh_pe_alloc() 77 INIT_LIST_HEAD(&pe->child_list); in eeh_pe_alloc() 78 INIT_LIST_HEAD(&pe->child); in eeh_pe_alloc() 79 INIT_LIST_HEAD(&pe->edevs); in eeh_pe_alloc() 81 pe->data = (void *)pe + ALIGN(sizeof(struct eeh_pe), in eeh_pe_alloc() 83 return pe; in eeh_pe_alloc() [all …]
|
D | eeh_driver.c | 176 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED)) in eeh_dev_save_state() 324 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED)) { in eeh_dev_restore_state() 325 if (list_is_last(&edev->list, &edev->pe->edevs)) in eeh_dev_restore_state() 326 eeh_pe_restore_bars(edev->pe); in eeh_dev_restore_state() 464 struct eeh_pe *pe = (struct eeh_pe *)data; in eeh_pe_detach_dev() local 467 eeh_pe_for_each_dev(pe, edev, tmp) { in eeh_pe_detach_dev() 487 struct eeh_pe *pe = (struct eeh_pe *)data; in __eeh_clear_pe_frozen_state() local 492 rc = eeh_unfreeze_pe(pe, clear_sw_state); in __eeh_clear_pe_frozen_state() 497 __func__, rc, pe->phb->global_number, pe->addr); in __eeh_clear_pe_frozen_state() 498 return (void *)pe; in __eeh_clear_pe_frozen_state() [all …]
|
D | eeh_event.c | 55 struct eeh_pe *pe; in eeh_event_handler() local 74 pe = event->pe; in eeh_event_handler() 75 if (pe) { in eeh_event_handler() 76 eeh_pe_state_mark(pe, EEH_PE_RECOVERING); in eeh_event_handler() 77 if (pe->type & EEH_PE_PHB) in eeh_event_handler() 79 pe->phb->global_number); in eeh_event_handler() 83 pe->phb->global_number, pe->addr); in eeh_event_handler() 84 eeh_handle_event(pe); in eeh_event_handler() 85 eeh_pe_state_clear(pe, EEH_PE_RECOVERING); in eeh_event_handler() 129 int eeh_send_failure_event(struct eeh_pe *pe) in eeh_send_failure_event() argument [all …]
|
D | eeh.c | 267 struct eeh_pe *pe = data; in eeh_dump_pe_log() local 275 if (pe->state & EEH_PE_CFG_BLOCKED) in eeh_dump_pe_log() 278 eeh_pe_for_each_dev(pe, edev, tmp) in eeh_dump_pe_log() 295 void eeh_slot_error_detail(struct eeh_pe *pe, int severity) in eeh_slot_error_detail() argument 308 if (!(pe->type & EEH_PE_PHB)) { in eeh_slot_error_detail() 310 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO); in eeh_slot_error_detail() 324 eeh_ops->configure_bridge(pe); in eeh_slot_error_detail() 325 if (!(pe->state & EEH_PE_CFG_BLOCKED)) { in eeh_slot_error_detail() 326 eeh_pe_restore_bars(pe); in eeh_slot_error_detail() 329 eeh_pe_traverse(pe, eeh_dump_pe_log, &loglen); in eeh_slot_error_detail() [all …]
|
D | eeh_sysfs.c | 64 if (!edev || !edev->pe) in eeh_pe_state_show() 67 state = eeh_ops->get_state(edev->pe, NULL); in eeh_pe_state_show() 69 state, edev->pe->state); in eeh_pe_state_show() 79 if (!edev || !edev->pe) in eeh_pe_state_store() 83 if (!(edev->pe->state & EEH_PE_ISOLATED)) in eeh_pe_state_store() 86 if (eeh_unfreeze_pe(edev->pe, true)) in eeh_pe_state_store()
|
D | rtas_pci.c | 69 if (pdn->edev && pdn->edev->pe && in rtas_read_config() 70 (pdn->edev->pe->state & EEH_PE_CFG_BLOCKED)) in rtas_read_config() 132 if (pdn->edev && pdn->edev->pe && in rtas_write_config() 133 (pdn->edev->pe->state & EEH_PE_CFG_BLOCKED)) in rtas_write_config()
|
D | eeh_cache.c | 193 if (!edev->pe) { in __eeh_addr_cache_insert_dev()
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | eeh_pseries.c | 202 struct eeh_pe pe; in pseries_eeh_probe() local 209 if (!edev || edev->pe) in pseries_eeh_probe() 244 memset(&pe, 0, sizeof(struct eeh_pe)); in pseries_eeh_probe() 245 pe.phb = edev->phb; in pseries_eeh_probe() 246 pe.config_addr = (pdn->busno << 16) | (pdn->devfn << 8); in pseries_eeh_probe() 249 ret = eeh_ops->set_option(&pe, EEH_OPT_ENABLE); in pseries_eeh_probe() 253 edev->pe_config_addr = eeh_ops->get_pe_addr(&pe); in pseries_eeh_probe() 254 pe.addr = edev->pe_config_addr; in pseries_eeh_probe() 260 ret = eeh_ops->get_state(&pe, NULL); in pseries_eeh_probe() 270 PCI_FUNC(pdn->devfn), pe.phb->global_number, in pseries_eeh_probe() [all …]
|
D | msi.c | 211 if (edev->pe) in find_pe_dn() 212 edev = list_first_entry(&edev->pe->edevs, struct eeh_dev, list); in find_pe_dn()
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
D | pci-ioda.c | 59 static void pe_level_printk(const struct pnv_ioda_pe *pe, const char *level, in pe_level_printk() argument 71 if (pe->flags & PNV_IODA_PE_DEV) in pe_level_printk() 72 strlcpy(pfix, dev_name(&pe->pdev->dev), sizeof(pfix)); in pe_level_printk() 73 else if (pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL)) in pe_level_printk() 75 pci_domain_nr(pe->pbus), pe->pbus->number); in pe_level_printk() 77 else if (pe->flags & PNV_IODA_PE_VF) in pe_level_printk() 79 pci_domain_nr(pe->parent_dev->bus), in pe_level_printk() 80 (pe->rid & 0xff00) >> 8, in pe_level_printk() 81 PCI_SLOT(pe->rid), PCI_FUNC(pe->rid)); in pe_level_printk() 85 level, pfix, pe->pe_number, &vaf); in pe_level_printk() [all …]
|
D | eeh-powernv.c | 110 struct eeh_pe *pe; in pnv_eeh_ei_write() local 136 pe = eeh_pe_get(edev); in pnv_eeh_ei_write() 138 if (!pe) in pnv_eeh_ei_write() 142 ret = eeh_ops->err_inject(pe, type, func, addr, mask); in pnv_eeh_ei_write() 378 if (!edev || edev->pe) in pnv_eeh_probe() 439 edev->pe->state |= EEH_PE_CFG_RESTRICTED; in pnv_eeh_probe() 447 if (!(edev->pe->state & EEH_PE_PRI_BUS)) { in pnv_eeh_probe() 448 edev->pe->bus = pci_find_bus(hose->global_number, in pnv_eeh_probe() 450 if (edev->pe->bus) in pnv_eeh_probe() 451 edev->pe->state |= EEH_PE_PRI_BUS; in pnv_eeh_probe() [all …]
|
D | pci.c | 502 if (edev->pe && in pnv_pci_cfg_check() 503 (edev->pe->state & EEH_PE_CFG_BLOCKED)) in pnv_pci_cfg_check() 749 struct pnv_ioda_pe *pe; in pnv_pci_dma_dev_setup() local 756 list_for_each_entry(pe, &phb->ioda.pe_list, list) { in pnv_pci_dma_dev_setup() 757 if (pe->rid == ((pdev->bus->number << 8) | in pnv_pci_dma_dev_setup() 759 pdn->pe_number = pe->pe_number; in pnv_pci_dma_dev_setup() 760 pe->pdev = pdev; in pnv_pci_dma_dev_setup() 775 struct pnv_ioda_pe *pe; in pnv_pci_dma_bus_setup() local 777 list_for_each_entry(pe, &phb->ioda.pe_list, list) { in pnv_pci_dma_bus_setup() 778 if (!(pe->flags & (PNV_IODA_PE_BUS | PNV_IODA_PE_BUS_ALL))) in pnv_pci_dma_bus_setup() [all …]
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_pe.c | 22 struct ip_vs_pe *pe; in __ip_vs_pe_getbyname() local 28 list_for_each_entry_rcu(pe, &ip_vs_pe, n_list) { in __ip_vs_pe_getbyname() 30 if (pe->module && in __ip_vs_pe_getbyname() 31 !try_module_get(pe->module)) { in __ip_vs_pe_getbyname() 35 if (strcmp(pe_name, pe->name)==0) { in __ip_vs_pe_getbyname() 38 return pe; in __ip_vs_pe_getbyname() 40 module_put(pe->module); in __ip_vs_pe_getbyname() 50 struct ip_vs_pe *pe; in ip_vs_pe_getbyname() local 53 pe = __ip_vs_pe_getbyname(name); in ip_vs_pe_getbyname() 56 if (!pe) { in ip_vs_pe_getbyname() [all …]
|
D | ip_vs_conn.c | 132 if (p->pe_data && p->pe->hashkey_raw) in ip_vs_conn_hashkey_param() 133 return p->pe->hashkey_raw(p, ip_vs_conn_rnd, inverse) & in ip_vs_conn_hashkey_param() 154 if (cp->pe) { in ip_vs_conn_hashkey_conn() 155 p.pe = cp->pe; in ip_vs_conn_hashkey_conn() 362 if (unlikely(p->pe_data && p->pe->ct_match)) { in ip_vs_ct_in_get() 365 if (p->pe == cp->pe && p->pe->ct_match(p, cp)) { in ip_vs_ct_in_get() 797 ip_vs_pe_put(cp->pe); in ip_vs_conn_rcu_free() 905 if (flags & IP_VS_CONN_F_TEMPLATE && p->pe) { in ip_vs_conn_new() 906 ip_vs_pe_get(p->pe); in ip_vs_conn_new() 907 cp->pe = p->pe; in ip_vs_conn_new() [all …]
|
D | ip_vs_ctl.c | 1165 struct ip_vs_pe *pe = NULL; in ip_vs_add_service() local 1183 pe = ip_vs_pe_getbyname(u->pe_name); in ip_vs_add_service() 1184 if (pe == NULL) { in ip_vs_add_service() 1248 RCU_INIT_POINTER(svc->pe, pe); in ip_vs_add_service() 1249 pe = NULL; in ip_vs_add_service() 1278 ip_vs_pe_put(pe); in ip_vs_add_service() 1294 struct ip_vs_pe *pe = NULL, *old_pe = NULL; in ip_vs_edit_service() local 1311 pe = ip_vs_pe_getbyname(u->pe_name); in ip_vs_edit_service() 1312 if (pe == NULL) { in ip_vs_edit_service() 1318 old_pe = pe; in ip_vs_edit_service() [all …]
|
D | ip_vs_sync.c | 655 pe_name_len = strnlen(cp->pe->name, IP_VS_PENAME_MAXLEN); in ip_vs_sync_conn() 762 memcpy(p, cp->pe->name, pe_name_len); in ip_vs_sync_conn() 811 p->pe = __ip_vs_pe_getbyname(buff); in ip_vs_conn_fill_param_sync() 812 if (!p->pe) { in ip_vs_conn_fill_param_sync() 824 module_put(p->pe->module); in ip_vs_conn_fill_param_sync() 1191 ip_vs_pe_put(param.pe); in ip_vs_proc_sync_conn()
|
D | ip_vs_core.c | 220 p->pe = rcu_dereference(svc->pe); in ip_vs_conn_fill_param_persist() 221 if (p->pe && p->pe->fill_param) in ip_vs_conn_fill_param_persist() 222 return p->pe->fill_param(p, skb); in ip_vs_conn_fill_param_persist()
|
/linux-4.4.14/drivers/net/ethernet/marvell/ |
D | mvpp2.c | 1008 static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe) in mvpp2_prs_hw_write() argument 1012 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1) in mvpp2_prs_hw_write() 1016 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK; in mvpp2_prs_hw_write() 1019 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index); in mvpp2_prs_hw_write() 1021 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]); in mvpp2_prs_hw_write() 1024 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index); in mvpp2_prs_hw_write() 1026 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]); in mvpp2_prs_hw_write() 1032 static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe) in mvpp2_prs_hw_read() argument 1036 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1) in mvpp2_prs_hw_read() 1040 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index); in mvpp2_prs_hw_read() [all …]
|
/linux-4.4.14/arch/alpha/include/asm/ |
D | core_marvel.h | 56 #define EV7_IPE(pe) ((~((long)(pe)) & EV7_PE_MASK) << 35) argument 58 #define EV7_CSR_PHYS(pe, off) (EV7_IPE(pe) | (0x7FFCUL << 20) | (off)) argument 59 #define EV7_CSRS_PHYS(pe) (EV7_CSR_PHYS(pe, 0UL)) argument 61 #define EV7_CSR_KERN(pe, off) (EV7_KERN_ADDR(EV7_CSR_PHYS(pe, off))) argument 62 #define EV7_CSRS_KERN(pe) (EV7_KERN_ADDR(EV7_CSRS_PHYS(pe))) argument 248 #define IO7_IPE(pe) (EV7_IPE(pe)) argument 251 #define IO7_HOSE(pe, port) (IO7_IPE(pe) | IO7_IPORT(port)) argument 253 #define IO7_MEM_PHYS(pe, port) (IO7_HOSE(pe, port) | 0x00000000UL) argument 254 #define IO7_CONF_PHYS(pe, port) (IO7_HOSE(pe, port) | 0xFE000000UL) argument 255 #define IO7_IO_PHYS(pe, port) (IO7_HOSE(pe, port) | 0xFF000000UL) argument [all …]
|
/linux-4.4.14/tools/perf/arch/x86/tests/ |
D | intel-cqm.c | 40 struct perf_event_attr pe; in test__intel_cqm_count_nmi_context() local 68 memset(&pe, 0, sizeof(pe)); in test__intel_cqm_count_nmi_context() 69 pe.size = sizeof(pe); in test__intel_cqm_count_nmi_context() 71 pe.type = PERF_TYPE_HARDWARE; in test__intel_cqm_count_nmi_context() 72 pe.config = PERF_COUNT_HW_CPU_CYCLES; in test__intel_cqm_count_nmi_context() 73 pe.read_format = PERF_FORMAT_GROUP; in test__intel_cqm_count_nmi_context() 75 pe.sample_period = 128; in test__intel_cqm_count_nmi_context() 76 pe.sample_type = PERF_SAMPLE_IP | PERF_SAMPLE_READ; in test__intel_cqm_count_nmi_context() 80 fd[0] = sys_perf_event_open(&pe, pid, -1, -1, flag); in test__intel_cqm_count_nmi_context() 86 memset(&pe, 0, sizeof(pe)); in test__intel_cqm_count_nmi_context() [all …]
|
/linux-4.4.14/tools/perf/tests/ |
D | bp_signal_overflow.c | 63 struct perf_event_attr pe; in test__bp_signal_overflow() local 78 memset(&pe, 0, sizeof(struct perf_event_attr)); in test__bp_signal_overflow() 79 pe.type = PERF_TYPE_BREAKPOINT; in test__bp_signal_overflow() 80 pe.size = sizeof(struct perf_event_attr); in test__bp_signal_overflow() 82 pe.config = 0; in test__bp_signal_overflow() 83 pe.bp_type = HW_BREAKPOINT_X; in test__bp_signal_overflow() 84 pe.bp_addr = (unsigned long) test_function; in test__bp_signal_overflow() 85 pe.bp_len = sizeof(long); in test__bp_signal_overflow() 87 pe.sample_period = THRESHOLD; in test__bp_signal_overflow() 88 pe.sample_type = PERF_SAMPLE_IP; in test__bp_signal_overflow() [all …]
|
D | bp_signal.c | 62 struct perf_event_attr pe; in bp_event() local 65 memset(&pe, 0, sizeof(struct perf_event_attr)); in bp_event() 66 pe.type = PERF_TYPE_BREAKPOINT; in bp_event() 67 pe.size = sizeof(struct perf_event_attr); in bp_event() 69 pe.config = 0; in bp_event() 70 pe.bp_type = HW_BREAKPOINT_X; in bp_event() 71 pe.bp_addr = (unsigned long) fn; in bp_event() 72 pe.bp_len = sizeof(long); in bp_event() 74 pe.sample_period = 1; in bp_event() 75 pe.sample_type = PERF_SAMPLE_IP; in bp_event() [all …]
|
/linux-4.4.14/drivers/clk/st/ |
D | clkgen-fsyn.c | 40 unsigned long pe; member 46 { .mdiv = 0x1f, .pe = 0x0, .sdiv = 0x7, .nsdiv = 0 }, /* 312.5 Khz */ 47 { .mdiv = 0x17, .pe = 0x25ed, .sdiv = 0x1, .nsdiv = 0 }, /* 27 MHz */ 48 { .mdiv = 0x1a, .pe = 0x7b36, .sdiv = 0x2, .nsdiv = 1 }, /* 36.87 MHz */ 49 { .mdiv = 0x13, .pe = 0x0, .sdiv = 0x2, .nsdiv = 1 }, /* 48 MHz */ 50 { .mdiv = 0x11, .pe = 0x1c72, .sdiv = 0x1, .nsdiv = 1 }, /* 108 MHz */ 54 { .mdiv = 0x1f, .pe = 0x0, .sdiv = 0x7, .nsdiv = 0 }, /* 625 Khz */ 55 { .mdiv = 0x13, .pe = 0x777c, .sdiv = 0x4, .nsdiv = 1 }, /* 25.175 MHz */ 56 { .mdiv = 0x19, .pe = 0x4d35, .sdiv = 0x2, .nsdiv = 0 }, /* 25.200 MHz */ 57 { .mdiv = 0x11, .pe = 0x1c72, .sdiv = 0x4, .nsdiv = 1 }, /* 27.000 MHz */ [all …]
|
/linux-4.4.14/drivers/misc/cxl/ |
D | trace.h | 66 __field(u16, pe) 72 __entry->pe = ctx->pe; 78 __entry->pe 91 __field(u16, pe) 101 __entry->pe = ctx->pe; 112 __entry->pe, 132 __field(u16, pe) 141 __entry->pe = ctx->pe; 150 __entry->pe, 165 __field(u16, pe) [all …]
|
D | file.c | 89 pr_devel("afu_open pe: %i\n", ctx->pe); in __afu_open() 120 __func__, ctx->pe); in afu_release() 154 pr_devel("%s: pe: %i\n", __func__, ctx->pe); in afu_ioctl_start_work() 221 pr_devel("%s: pe: %i\n", __func__, ctx->pe); in afu_ioctl_process_element() 223 if (copy_to_user(upe, &ctx->pe, sizeof(__u32))) in afu_ioctl_process_element() 300 pr_devel("afu_poll wait done pe: %i\n", ctx->pe); in afu_poll() 312 pr_devel("afu_poll pe: %i returning %#x\n", ctx->pe, mask); in afu_poll() 370 event.header.process_element = ctx->pe; in afu_read()
|
D | context.c | 97 ctx->pe = i; in cxl_context_init() 112 __func__, ctx->pe, address, offset); in cxl_mmap_fault() 184 ctx->psn_phys, ctx->pe , ctx->master); in cxl_context_iomap() 287 idr_remove(&ctx->afu->contexts_idr, ctx->pe); in cxl_context_free()
|
D | native.c | 345 *(ctx->afu->sw_command_status) = cpu_to_be64(cmd | 0 | ctx->pe); in do_process_element_cmd() 347 cxl_p1n_write(ctx->afu, CXL_PSL_LLCMD_An, cmd | ctx->pe); in do_process_element_cmd() 366 (cmd | (cmd >> 16) | ctx->pe)) in do_process_element_cmd() 388 pr_devel("%s Adding pe: %i started\n", __func__, ctx->pe); in add_process_element() 391 pr_devel("%s Adding pe: %i finished\n", __func__, ctx->pe); in add_process_element() 405 pr_devel("%s Terminate pe: %i started\n", __func__, ctx->pe); in terminate_process_element() 414 pr_devel("%s Terminate pe: %i finished\n", __func__, ctx->pe); in terminate_process_element() 424 pr_devel("%s Remove pe: %i started\n", __func__, ctx->pe); in remove_process_element() 435 pr_devel("%s Remove pe: %i finished\n", __func__, ctx->pe); in remove_process_element() 449 (ctx->afu->pp_offset + ctx->afu->pp_size * ctx->pe); in cxl_assign_psn_space()
|
D | irq.c | 106 pr_devel("CXL interrupt %i for afu pe: %i DSISR: %#llx DAR: %#llx\n", irq, ctx->pe, dsisr, dar); in cxl_irq() 119 pr_devel("Scheduling segment miss handling for later pe: %i\n", ctx->pe); in cxl_irq() 140 pr_devel("Scheduling page fault handling for later pe: %i\n", ctx->pe); in cxl_irq() 162 ctx->pe, irq_info->afu_err); in cxl_irq() 240 ctx->pe, irq, hwirq); in cxl_irq_afu() 246 afu_irq, ctx->pe, irq, hwirq); in cxl_irq_afu() 460 ctx->pe, j); in afu_allocate_irqs()
|
D | fault.c | 120 pr_devel("CXL interrupt: Segment fault pe: %i ea: %#llx\n", ctx->pe, ea); in cxl_handle_segment_miss() 165 pr_devel("Page fault successfully handled for pe: %i!\n", ctx->pe); in cxl_handle_page_fault() 180 cxl_p2n_read(ctx->afu, CXL_PSL_PEHandle_An) != ctx->pe) { in cxl_handle_fault() 195 "DSISR: %#llx DAR: %#llx\n", ctx->pe, dsisr, dar); in cxl_handle_fault()
|
D | api.c | 171 pr_devel("%s: pe: %i\n", __func__, ctx->pe); in cxl_start_context() 200 return ctx->pe; in cxl_process_element()
|
D | main.c | 49 ctx->afu->adapter->adapter_num, ctx->afu->slice, ctx->pe); in _cxl_slbia()
|
D | cxl.h | 464 int pe; /* process element handle */ member
|
/linux-4.4.14/crypto/ |
D | des_generic.c | 631 unsigned long des_ekey(u32 *pe, const u8 *k) in des_ekey() argument 642 pe[15 * 2 + 0] = DES_PC2(a, b, c, d); d = rs[d]; in des_ekey() 643 pe[14 * 2 + 0] = DES_PC2(d, a, b, c); c = rs[c]; b = rs[b]; in des_ekey() 644 pe[13 * 2 + 0] = DES_PC2(b, c, d, a); a = rs[a]; d = rs[d]; in des_ekey() 645 pe[12 * 2 + 0] = DES_PC2(d, a, b, c); c = rs[c]; b = rs[b]; in des_ekey() 646 pe[11 * 2 + 0] = DES_PC2(b, c, d, a); a = rs[a]; d = rs[d]; in des_ekey() 647 pe[10 * 2 + 0] = DES_PC2(d, a, b, c); c = rs[c]; b = rs[b]; in des_ekey() 648 pe[ 9 * 2 + 0] = DES_PC2(b, c, d, a); a = rs[a]; d = rs[d]; in des_ekey() 649 pe[ 8 * 2 + 0] = DES_PC2(d, a, b, c); c = rs[c]; in des_ekey() 650 pe[ 7 * 2 + 0] = DES_PC2(c, d, a, b); b = rs[b]; a = rs[a]; in des_ekey() [all …]
|
/linux-4.4.14/drivers/vfio/ |
D | vfio_spapr_eeh.c | 37 struct eeh_pe *pe; in vfio_spapr_iommu_eeh_ioctl() local 50 pe = eeh_iommu_group_to_pe(group); in vfio_spapr_iommu_eeh_ioctl() 51 if (!pe) in vfio_spapr_iommu_eeh_ioctl() 62 ret = eeh_pe_set_option(pe, EEH_OPT_DISABLE); in vfio_spapr_iommu_eeh_ioctl() 65 ret = eeh_pe_set_option(pe, EEH_OPT_ENABLE); in vfio_spapr_iommu_eeh_ioctl() 68 ret = eeh_pe_set_option(pe, EEH_OPT_THAW_MMIO); in vfio_spapr_iommu_eeh_ioctl() 71 ret = eeh_pe_set_option(pe, EEH_OPT_THAW_DMA); in vfio_spapr_iommu_eeh_ioctl() 74 ret = eeh_pe_get_state(pe); in vfio_spapr_iommu_eeh_ioctl() 77 ret = eeh_pe_reset(pe, EEH_RESET_DEACTIVATE); in vfio_spapr_iommu_eeh_ioctl() 80 ret = eeh_pe_reset(pe, EEH_RESET_HOT); in vfio_spapr_iommu_eeh_ioctl() [all …]
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | eeh.h | 105 #define eeh_pe_for_each_dev(pe, edev, tmp) \ argument 106 list_for_each_entry_safe(edev, tmp, &pe->edevs, list) 108 static inline bool eeh_pe_passed(struct eeh_pe *pe) in eeh_pe_passed() argument 110 return pe ? !!atomic_read(&pe->pass_dev_cnt) : false; in eeh_pe_passed() 139 struct eeh_pe *pe; /* Associated PE */ member 159 return edev ? edev->pe : NULL; in eeh_dev_to_pe() 202 int (*set_option)(struct eeh_pe *pe, int option); 203 int (*get_pe_addr)(struct eeh_pe *pe); 204 int (*get_state)(struct eeh_pe *pe, int *state); 205 int (*reset)(struct eeh_pe *pe, int option); [all …]
|
D | ppc-pci.h | 56 void eeh_slot_error_detail(struct eeh_pe *pe, int severity); 57 int eeh_pci_enable(struct eeh_pe *pe, int function); 62 void eeh_pe_state_mark(struct eeh_pe *pe, int state); 63 void eeh_pe_state_clear(struct eeh_pe *pe, int state); 64 void eeh_pe_state_mark_with_cfg(struct eeh_pe *pe, int state); 65 void eeh_pe_dev_mode_mark(struct eeh_pe *pe, int mode);
|
D | eeh_event.h | 31 struct eeh_pe *pe; /* EEH PE */ member 35 int eeh_send_failure_event(struct eeh_pe *pe); 36 void eeh_remove_event(struct eeh_pe *pe, bool force); 37 void eeh_handle_event(struct eeh_pe *pe);
|
/linux-4.4.14/drivers/tty/vt/ |
D | selection.c | 164 int i, ps, pe, multiplier; in set_selection() local 185 pe = ye * vc->vc_size_row + (xe << 1); in set_selection() 199 if (ps > pe) /* make sel_start <= sel_end */ in set_selection() 202 ps = pe; in set_selection() 203 pe = tmp; in set_selection() 220 new_sel_end = pe; in set_selection() 233 spc = isspace(sel_pos(pe)); in set_selection() 234 for (new_sel_end = pe; ; pe += 2) in set_selection() 236 if ((spc && !isspace(sel_pos(pe))) || in set_selection() 237 (!spc && !inword(sel_pos(pe)))) in set_selection() [all …]
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | dfs.c | 204 struct pulse_event *pe) in ath9k_postprocess_radar_event() argument 268 pe->width = dur_to_usecs(sc->sc_ah, dur); in ath9k_postprocess_radar_event() 269 pe->rssi = rssi; in ath9k_postprocess_radar_event() 276 ath9k_dfs_process_radar_pulse(struct ath_softc *sc, struct pulse_event *pe) in ath9k_dfs_process_radar_pulse() argument 282 if (!pd->add_pulse(pd, pe)) in ath9k_dfs_process_radar_pulse() 297 struct pulse_event pe; in ath9k_dfs_process_phyerr() local 333 pe.freq = ah->curchan->channel; in ath9k_dfs_process_phyerr() 334 pe.ts = mactime; in ath9k_dfs_process_phyerr() 335 if (!ath9k_postprocess_radar_event(sc, &ard, &pe)) in ath9k_dfs_process_phyerr() 338 if (pe.width > MIN_CHIRP_PULSE_WIDTH && in ath9k_dfs_process_phyerr() [all …]
|
/linux-4.4.14/drivers/md/ |
D | dm-cache-policy-cleaner.c | 172 static int wb_map(struct dm_cache_policy *pe, dm_oblock_t oblock, in wb_map() argument 177 struct policy *p = to_policy(pe); in wb_map() 201 static int wb_lookup(struct dm_cache_policy *pe, dm_oblock_t oblock, dm_cblock_t *cblock) in wb_lookup() argument 204 struct policy *p = to_policy(pe); in wb_lookup() 224 static void __set_clear_dirty(struct dm_cache_policy *pe, dm_oblock_t oblock, bool set) in __set_clear_dirty() argument 226 struct policy *p = to_policy(pe); in __set_clear_dirty() 247 static void wb_set_dirty(struct dm_cache_policy *pe, dm_oblock_t oblock) in wb_set_dirty() argument 249 struct policy *p = to_policy(pe); in wb_set_dirty() 253 __set_clear_dirty(pe, oblock, true); in wb_set_dirty() 257 static void wb_clear_dirty(struct dm_cache_policy *pe, dm_oblock_t oblock) in wb_clear_dirty() argument [all …]
|
D | dm-snap.c | 686 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool, in alloc_pending_exception() local 690 pe->snap = s; in alloc_pending_exception() 692 return pe; in alloc_pending_exception() 695 static void free_pending_exception(struct dm_snap_pending_exception *pe) in free_pending_exception() argument 697 struct dm_snapshot *s = pe->snap; in free_pending_exception() 699 mempool_free(pe, s->pending_pool); in free_pending_exception() 1452 struct dm_snap_pending_exception *pe = context; in pending_complete() local 1454 struct dm_snapshot *s = pe->snap; in pending_complete() 1475 *e = pe->e; in pending_complete() 1485 __check_for_conflicting_io(s, pe->e.old_chunk); in pending_complete() [all …]
|
/linux-4.4.14/arch/alpha/kernel/ |
D | core_marvel.c | 56 read_ev7_csr(int pe, unsigned long offset) in read_ev7_csr() argument 58 ev7_csr *ev7csr = EV7_CSR_KERN(pe, offset); in read_ev7_csr() 69 write_ev7_csr(int pe, unsigned long offset, unsigned long q) in write_ev7_csr() argument 71 ev7_csr *ev7csr = EV7_CSR_KERN(pe, offset); in write_ev7_csr() 79 mk_resource_name(int pe, int port, char *str) in mk_resource_name() argument 84 sprintf(tmp, "PCI %s PE %d PORT %d", str, pe, port); in mk_resource_name() 98 marvel_find_io7(int pe) in marvel_find_io7() argument 102 for (io7 = io7_head; io7 && io7->pe != pe; io7 = io7->next) in marvel_find_io7() 109 alloc_io7(unsigned int pe) in alloc_io7() argument 115 if (marvel_find_io7(pe)) { in alloc_io7() [all …]
|
D | perf_event.c | 343 struct perf_event *pe; in collect_events() local 353 list_for_each_entry(pe, &group->sibling_list, group_entry) { in collect_events() 354 if (!is_software_event(pe) && pe->state != PERF_EVENT_STATE_OFF) { in collect_events() 357 event[n] = pe; in collect_events() 358 evtype[n] = pe->hw.event_base; in collect_events() 399 struct perf_event *pe = cpuc->event[j]; in maybe_change_configuration() local 402 cpuc->current_idx[j] != pe->hw.idx) { in maybe_change_configuration() 403 alpha_perf_event_update(pe, &pe->hw, cpuc->current_idx[j], 0); in maybe_change_configuration() 411 struct perf_event *pe = cpuc->event[j]; in maybe_change_configuration() local 412 struct hw_perf_event *hwc = &pe->hw; in maybe_change_configuration() [all …]
|
D | sys_marvel.c | 249 long base = (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT) + 16; in init_io7_irqs() 253 io7->pe, base); in init_io7_irqs() 359 (irq + 16) | (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT), in marvel_map_irq() 360 (irq + 16) | (io7->pe << MARVEL_IRQ_VEC_PE_SHIFT)); in marvel_map_irq() 374 irq |= io7->pe << MARVEL_IRQ_VEC_PE_SHIFT; /* merge the pid */ in marvel_map_irq()
|
D | proto.h | 58 struct io7 *marvel_find_io7(int pe);
|
D | err_marvel.c | 896 lf_subpackets->io_pid = io7->pe; in marvel_find_io7_with_error()
|
/linux-4.4.14/drivers/staging/speakup/ |
D | selection.c | 56 int i, ps, pe; in speakup_set_selection() local 64 pe = spk_ye * vc->vc_size_row + (spk_xe << 1); in speakup_set_selection() 66 if (ps > pe) { in speakup_set_selection() 70 ps = pe; in speakup_set_selection() 71 pe = tmp; in speakup_set_selection() 83 new_sel_end = pe; in speakup_set_selection() 89 for (pe = new_sel_end + 2; ; pe += 2) in speakup_set_selection() 90 if (!ishardspace(sel_pos(pe)) || in speakup_set_selection() 91 atedge(pe, vc->vc_size_row)) in speakup_set_selection() 93 if (ishardspace(sel_pos(pe))) in speakup_set_selection() [all …]
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | si_dma.c | 71 uint64_t pe, uint64_t src, in si_dma_vm_copy_pages() argument 81 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in si_dma_vm_copy_pages() 83 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff; in si_dma_vm_copy_pages() 86 pe += bytes; in si_dma_vm_copy_pages() 107 uint64_t pe, in si_dma_vm_write_pages() argument 121 ib->ptr[ib->length_dw++] = pe; in si_dma_vm_write_pages() 122 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff; in si_dma_vm_write_pages() 123 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in si_dma_vm_write_pages() 154 uint64_t pe, in si_dma_vm_set_pages() argument 173 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in si_dma_vm_set_pages() [all …]
|
D | ni_dma.c | 317 uint64_t pe, uint64_t src, in cayman_dma_vm_copy_pages() argument 329 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in cayman_dma_vm_copy_pages() 331 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff; in cayman_dma_vm_copy_pages() 334 pe += ndw * 4; in cayman_dma_vm_copy_pages() 355 uint64_t pe, in cayman_dma_vm_write_pages() argument 370 ib->ptr[ib->length_dw++] = pe; in cayman_dma_vm_write_pages() 371 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff; in cayman_dma_vm_write_pages() 372 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in cayman_dma_vm_write_pages() 403 uint64_t pe, in cayman_dma_vm_set_pages() argument 422 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in cayman_dma_vm_set_pages() [all …]
|
D | radeon_trace.h | 83 TP_PROTO(uint64_t pe, uint64_t addr, unsigned count, 85 TP_ARGS(pe, addr, count, incr, flags), 87 __field(u64, pe) 95 __entry->pe = pe; 102 __entry->pe, __entry->addr, __entry->incr,
|
D | cik_sdma.c | 800 uint64_t pe, uint64_t src, in cik_sdma_vm_copy_pages() argument 814 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in cik_sdma_vm_copy_pages() 815 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in cik_sdma_vm_copy_pages() 817 pe += bytes; in cik_sdma_vm_copy_pages() 838 uint64_t pe, in cik_sdma_vm_write_pages() argument 853 ib->ptr[ib->length_dw++] = pe; in cik_sdma_vm_write_pages() 854 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in cik_sdma_vm_write_pages() 856 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in cik_sdma_vm_write_pages() 887 uint64_t pe, in cik_sdma_vm_set_pages() argument 906 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in cik_sdma_vm_set_pages() [all …]
|
D | radeon_asic.h | 625 uint64_t pe, uint64_t src, 629 uint64_t pe, 634 uint64_t pe, 731 uint64_t pe, uint64_t src, 735 uint64_t pe, 740 uint64_t pe, 833 uint64_t pe, uint64_t src, 837 uint64_t pe, 842 uint64_t pe,
|
D | radeon_vm.c | 361 uint64_t pe, in radeon_vm_set_pages() argument 365 trace_radeon_vm_set_page(pe, addr, count, incr, flags); in radeon_vm_set_pages() 369 radeon_asic_vm_copy_pages(rdev, ib, pe, src, count); in radeon_vm_set_pages() 372 radeon_asic_vm_write_pages(rdev, ib, pe, addr, in radeon_vm_set_pages() 376 radeon_asic_vm_set_pages(rdev, ib, pe, addr, in radeon_vm_set_pages()
|
D | radeon.h | 1878 uint64_t pe, uint64_t src, 1882 uint64_t pe, 1887 uint64_t pe, 2724 #define radeon_asic_vm_copy_pages(rdev, ib, pe, src, count) ((rdev)->asic->vm.copy_pages((rdev), (i… argument 2725 … radeon_asic_vm_write_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.write_pages(… argument 2726 …ine radeon_asic_vm_set_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.set_pages((… argument
|
/linux-4.4.14/drivers/scsi/libsas/ |
D | sas_dump.c | 47 void sas_dprint_porte(int phyid, enum port_event pe) in sas_dprint_porte() argument 49 SAS_DPRINTK("phy%d: port event: %s\n", phyid, sas_porte_str[pe]); in sas_dprint_porte() 51 void sas_dprint_phye(int phyid, enum phy_event pe) in sas_dprint_phye() argument 53 SAS_DPRINTK("phy%d: phy event: %s\n", phyid, sas_phye_str[pe]); in sas_dprint_phye()
|
D | sas_dump.h | 27 void sas_dprint_porte(int phyid, enum port_event pe); 28 void sas_dprint_phye(int phyid, enum phy_event pe);
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
D | divasproc.c | 359 struct proc_dir_entry *de, *pe; in create_adapter_proc() local 367 pe = proc_create_data(info_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc() 369 if (!pe) in create_adapter_proc() 371 a->proc_info = (void *) pe; in create_adapter_proc() 373 pe = proc_create_data(grp_opt_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc() 375 if (pe) in create_adapter_proc() 376 a->proc_grp_opt = (void *) pe; in create_adapter_proc() 377 pe = proc_create_data(d_l1_down_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc() 379 if (pe) in create_adapter_proc() 380 a->proc_d_l1_down = (void *) pe; in create_adapter_proc()
|
D | divacapi.h | 642 unsigned pe:1; member
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | dp.c | 172 info->pe = nvbios_rd08(bios, data + 0x03); in nvbios_dpcfg_parse() 180 info->pe = nvbios_rd08(bios, data + 0x02); in nvbios_dpcfg_parse() 192 nvbios_dpcfg_match(struct nvkm_bios *bios, u16 outp, u8 pc, u8 vs, u8 pe, in nvbios_dpcfg_match() argument 201 idx = (pc * 10) + vsoff[vs] + pe; in nvbios_dpcfg_match() 208 nvbios_rd08(bios, data + 0x01) == pe) in nvbios_dpcfg_match()
|
/linux-4.4.14/include/linux/ |
D | posix_acl.h | 54 #define FOREACH_ACL_ENTRY(pa, acl, pe) \ argument 55 for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
|
/linux-4.4.14/fs/ |
D | posix_acl.c | 176 const struct posix_acl_entry *pa, *pe; in posix_acl_valid() local 180 FOREACH_ACL_ENTRY(pa, acl, pe) { in posix_acl_valid() 245 const struct posix_acl_entry *pa, *pe; in posix_acl_equiv_mode() local 255 FOREACH_ACL_ENTRY(pa, acl, pe) { in posix_acl_equiv_mode() 314 const struct posix_acl_entry *pa, *pe, *mask_obj; in posix_acl_permission() local 319 FOREACH_ACL_ENTRY(pa, acl, pe) { in posix_acl_permission() 358 for (mask_obj = pa+1; mask_obj != pe; mask_obj++) { in posix_acl_permission() 382 struct posix_acl_entry *pa, *pe; in posix_acl_create_masq() local 389 FOREACH_ACL_ENTRY(pa, acl, pe) { in posix_acl_create_masq() 440 struct posix_acl_entry *pa, *pe; in __posix_acl_chmod_masq() local [all …]
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_trace.h | 194 TP_PROTO(uint64_t pe, uint64_t addr, unsigned count, 196 TP_ARGS(pe, addr, count, incr, flags), 198 __field(u64, pe) 206 __entry->pe = pe; 213 __entry->pe, __entry->addr, __entry->incr,
|
D | cik_sdma.c | 705 uint64_t pe, uint64_t src, in cik_sdma_vm_copy_pte() argument 719 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in cik_sdma_vm_copy_pte() 720 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in cik_sdma_vm_copy_pte() 722 pe += bytes; in cik_sdma_vm_copy_pte() 741 uint64_t pe, in cik_sdma_vm_write_pte() argument 756 ib->ptr[ib->length_dw++] = pe; in cik_sdma_vm_write_pte() 757 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in cik_sdma_vm_write_pte() 759 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in cik_sdma_vm_write_pte() 789 uint64_t pe, in cik_sdma_vm_set_pte_pde() argument 808 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in cik_sdma_vm_set_pte_pde() [all …]
|
D | sdma_v2_4.c | 764 uint64_t pe, uint64_t src, in sdma_v2_4_vm_copy_pte() argument 778 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in sdma_v2_4_vm_copy_pte() 779 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in sdma_v2_4_vm_copy_pte() 781 pe += bytes; in sdma_v2_4_vm_copy_pte() 800 uint64_t pe, in sdma_v2_4_vm_write_pte() argument 815 ib->ptr[ib->length_dw++] = pe; in sdma_v2_4_vm_write_pte() 816 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in sdma_v2_4_vm_write_pte() 818 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in sdma_v2_4_vm_write_pte() 848 uint64_t pe, in sdma_v2_4_vm_set_pte_pde() argument 867 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in sdma_v2_4_vm_set_pte_pde() [all …]
|
D | sdma_v3_0.c | 913 uint64_t pe, uint64_t src, in sdma_v3_0_vm_copy_pte() argument 927 ib->ptr[ib->length_dw++] = lower_32_bits(pe); in sdma_v3_0_vm_copy_pte() 928 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in sdma_v3_0_vm_copy_pte() 930 pe += bytes; in sdma_v3_0_vm_copy_pte() 949 uint64_t pe, in sdma_v3_0_vm_write_pte() argument 964 ib->ptr[ib->length_dw++] = pe; in sdma_v3_0_vm_write_pte() 965 ib->ptr[ib->length_dw++] = upper_32_bits(pe); in sdma_v3_0_vm_write_pte() 967 for (; ndw > 0; ndw -= 2, --count, pe += 8) { in sdma_v3_0_vm_write_pte() 997 uint64_t pe, in sdma_v3_0_vm_set_pte_pde() argument 1016 ib->ptr[ib->length_dw++] = pe; /* dst addr */ in sdma_v3_0_vm_set_pte_pde() [all …]
|
D | amdgpu_vm.c | 301 uint64_t pe, uint64_t addr, in amdgpu_vm_update_pages() argument 305 trace_amdgpu_vm_set_page(pe, addr, count, incr, flags); in amdgpu_vm_update_pages() 309 amdgpu_vm_copy_pte(adev, ib, pe, src, count); in amdgpu_vm_update_pages() 312 amdgpu_vm_write_pte(adev, ib, pe, addr, in amdgpu_vm_update_pages() 316 amdgpu_vm_set_pte_pde(adev, ib, pe, addr, in amdgpu_vm_update_pages()
|
D | amdgpu.h | 284 uint64_t pe, uint64_t src, 288 uint64_t pe, 293 uint64_t pe, 2242 #define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib… argument 2243 …fine amdgpu_vm_write_pte(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs-… argument 2244 …e amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->… argument
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | sorgf119.c | 69 int ln, int vs, int pe, int pc) in gf119_sor_dp_drv_ctl() argument 86 addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe, in gf119_sor_dp_drv_ctl() 97 nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift)); in gf119_sor_dp_drv_ctl()
|
D | sorgm204.c | 94 int ln, int vs, int pe, int pc) in gm204_sor_dp_drv_ctl() argument 111 addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe, in gm204_sor_dp_drv_ctl() 123 nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift)); in gm204_sor_dp_drv_ctl()
|
D | sorg94.c | 122 g94_sor_dp_drv_ctl(struct nvkm_output_dp *outp, int ln, int vs, int pe, int pc) in g94_sor_dp_drv_ctl() argument 139 addr = nvbios_dpcfg_match(bios, addr, 0, vs, pe, in g94_sor_dp_drv_ctl() 150 nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift)); in g94_sor_dp_drv_ctl()
|
D | outpdp.h | 43 int (*drv_ctl)(struct nvkm_output_dp *, int ln, int vs, int pe, int pc);
|
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
D | dp.h | 21 u8 pe; member 29 nvbios_dpcfg_match(struct nvkm_bios *, u16 outp, u8 pc, u8 vs, u8 pe,
|
/linux-4.4.14/crypto/asymmetric_keys/ |
D | verify_pefile.c | 30 const struct pe_hdr *pe; in pefile_parse_binary() local 51 chkaddr(cursor, mz->peaddr, sizeof(*pe)); in pefile_parse_binary() 52 pe = pebuf + mz->peaddr; in pefile_parse_binary() 53 if (pe->magic != PE_MAGIC) in pefile_parse_binary() 55 cursor = mz->peaddr + sizeof(*pe); in pefile_parse_binary() 114 ctx->n_sections = pe->sections; in pefile_parse_binary()
|
/linux-4.4.14/drivers/net/wireless/ath/ |
D | dfs_pri_detector.c | 119 static void pool_put_pulse_elem(struct pulse_elem *pe) in pool_put_pulse_elem() argument 122 list_add(&pe->head, &pulse_pool); in pool_put_pulse_elem() 150 struct pulse_elem *pe = NULL; in pool_get_pulse_elem() local 153 pe = list_first_entry(&pulse_pool, struct pulse_elem, head); in pool_get_pulse_elem() 154 list_del(&pe->head); in pool_get_pulse_elem() 158 return pe; in pool_get_pulse_elem()
|
D | dfs_pattern_detector.h | 100 struct pulse_event *pe);
|
/linux-4.4.14/drivers/atm/ |
D | firestream.c | 777 struct FS_BPENTRY *pe; in process_incoming() local 793 pe = bus_to_virt (qe->p0); in process_incoming() 795 pe->flags, pe->next, pe->bsa, pe->aal_bufsize, in process_incoming() 796 pe->skb, pe->fp); in process_incoming() 811 skb = pe->skb; in process_incoming() 812 pe->fp->n--; in process_incoming() 815 if (FS_DEBUG_QUEUE & fs_debug) my_hd (bus_to_virt (pe->bsa), 0x20); in process_incoming() 823 fs_dprintk (FS_DEBUG_ALLOC, "Free rec-d: %p\n", pe); in process_incoming() 824 kfree (pe); in process_incoming() 832 pe = bus_to_virt (qe->p0); in process_incoming() [all …]
|
/linux-4.4.14/include/net/ |
D | ip_vs.h | 506 const struct ip_vs_pe *pe; member 565 const struct ip_vs_pe *pe; member 643 struct ip_vs_pe __rcu *pe; member 1178 p->pe = NULL; in ip_vs_conn_fill_param() 1318 int register_ip_vs_pe(struct ip_vs_pe *pe); 1319 int unregister_ip_vs_pe(struct ip_vs_pe *pe); 1324 #define ip_vs_pe_get(pe) \ argument 1325 if (pe && pe->module) \ 1326 __module_get(pe->module); 1328 #define ip_vs_pe_put(pe) \ argument [all …]
|
/linux-4.4.14/kernel/time/ |
D | timer_stats.c | 418 struct proc_dir_entry *pe; in init_tstats_procfs() local 420 pe = proc_create("timer_stats", 0644, NULL, &tstats_fops); in init_tstats_procfs() 421 if (!pe) in init_tstats_procfs()
|
D | timer_list.c | 394 struct proc_dir_entry *pe; in init_timer_list_procfs() local 396 pe = proc_create("timer_list", 0444, NULL, &timer_list_fops); in init_timer_list_procfs() 397 if (!pe) in init_timer_list_procfs()
|
/linux-4.4.14/include/crypto/ |
D | des.h | 17 extern unsigned long des_ekey(u32 *pe, const u8 *k);
|
/linux-4.4.14/scripts/ |
D | stackusage | 29 xargs perl -MFile::Basename -pe \
|
/linux-4.4.14/arch/arm64/mm/ |
D | dump.c | 339 struct dentry *pe; in ptdump_init() local 354 pe = debugfs_create_file("kernel_page_tables", 0400, NULL, NULL, in ptdump_init() 356 return pe ? 0 : -ENOMEM; in ptdump_init()
|
/linux-4.4.14/arch/arm/mm/ |
D | dump.c | 346 struct dentry *pe; in ptdump_init() local 356 pe = debugfs_create_file("kernel_page_tables", 0400, NULL, NULL, in ptdump_init() 358 return pe ? 0 : -ENOMEM; in ptdump_init()
|
/linux-4.4.14/drivers/scsi/aic94xx/ |
D | aic94xx_sds.c | 942 struct asd_ctrla_phy_entry *pe = &ps->phy_ent[i]; in asd_process_ctrla_phy_settings() local 946 if (*(u64 *)pe->sas_addr == 0) { in asd_process_ctrla_phy_settings() 951 memcpy(asd_ha->hw_prof.phy_desc[i].sas_addr, pe->sas_addr, in asd_process_ctrla_phy_settings() 954 (pe->sas_link_rates & 0xF0) >> 4; in asd_process_ctrla_phy_settings() 956 (pe->sas_link_rates & 0x0F); in asd_process_ctrla_phy_settings() 958 (pe->sata_link_rates & 0xF0) >> 4; in asd_process_ctrla_phy_settings() 960 (pe->sata_link_rates & 0x0F); in asd_process_ctrla_phy_settings() 961 asd_ha->hw_prof.phy_desc[i].flags = pe->flags; in asd_process_ctrla_phy_settings()
|
/linux-4.4.14/arch/x86/mm/ |
D | dump_pagetables.c | 458 struct dentry *pe; in pt_dump_init() local 472 pe = debugfs_create_file("kernel_page_tables", 0600, NULL, NULL, in pt_dump_init() 474 if (!pe) in pt_dump_init()
|
/linux-4.4.14/fs/nfs_common/ |
D | nfsacl.c | 220 struct posix_acl_entry *pa, *pe, in posix_acl_from_nfsacl() local 230 FOREACH_ACL_ENTRY(pa, acl, pe) { in posix_acl_from_nfsacl()
|
/linux-4.4.14/scripts/genksyms/ |
D | parse.y | 47 remove_list(struct string_list **pb, struct string_list **pe) in remove_list() argument 49 struct string_list *b = *pb, *e = *pe; in remove_list()
|
D | parse.tab.c_shipped | 89 remove_list(struct string_list **pb, struct string_list **pe) 91 struct string_list *b = *pb, *e = *pe;
|
/linux-4.4.14/drivers/parisc/ |
D | eisa.c | 432 char *pe; in eisa_irq_setup() local 434 val = (int) simple_strtoul(cur, &pe, 0); in eisa_irq_setup()
|
/linux-4.4.14/fs/f2fs/ |
D | acl.c | 280 struct posix_acl_entry *pa, *pe; in f2fs_acl_create_masq() local 287 FOREACH_ACL_ENTRY(pa, acl, pe) { in f2fs_acl_create_masq()
|
/linux-4.4.14/kernel/sched/ |
D | debug.c | 491 struct proc_dir_entry *pe; in init_sched_debug_procfs() local 493 pe = proc_create("sched_debug", 0444, NULL, &sched_debug_fops); in init_sched_debug_procfs() 494 if (!pe) in init_sched_debug_procfs()
|
/linux-4.4.14/fs/nfsd/ |
D | nfs4acl.c | 191 struct posix_acl_entry *pa, *pe; in summarize_posix_acl() local 201 pe = acl->a_entries + acl->a_count; in summarize_posix_acl() 203 FOREACH_ACL_ENTRY(pa, acl, pe) { in summarize_posix_acl()
|
/linux-4.4.14/drivers/scsi/isci/ |
D | registers.h | 440 #define SMU_RESET_PROTOCOL_ENGINE(peg, pe) \ argument 441 ((1 << (pe)) << ((peg) * 8)) 1819 struct transport_link_layer_pair pe[4]; member
|
D | host.c | 2219 &ihost->scu_registers->peg0.pe[i].tl, in sci_controller_initialize() 2220 &ihost->scu_registers->peg0.pe[i].ll); in sci_controller_initialize()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_ct.c | 1412 struct lpfc_fdmi_port_entry *pe; in lpfc_fdmi_cmd() local 1487 memcpy(&rh->rpl.pe, &vport->fc_sparam.portName, in lpfc_fdmi_cmd() 2047 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID; in lpfc_fdmi_cmd() 2048 memcpy((uint8_t *)&pe->PortName, in lpfc_fdmi_cmd() 2059 pe = (struct lpfc_fdmi_port_entry *)&CtReq->un.PortID; in lpfc_fdmi_cmd() 2060 memcpy((uint8_t *)&pe->PortName, in lpfc_fdmi_cmd()
|
D | lpfc_hw.h | 1219 uint32_t pe; /* Variable-length array */ member
|
/linux-4.4.14/drivers/media/pci/saa7164/ |
D | saa7164-core.c | 1149 struct proc_dir_entry *pe; in saa7164_proc_create() local 1151 pe = proc_create("saa7164", S_IRUGO, NULL, &saa7164_proc_fops); in saa7164_proc_create() 1152 if (!pe) in saa7164_proc_create()
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | nvidia,tegra124-pinmux.txt | 111 vi, vi_alt1, vi_alt3, vimclk2, vimclk2_alt, sata, ccla, pe0, pe, pe1,
|
D | nvidia,tegra210-pinmux.txt | 138 i2s1, i2s2, i2s3, i2s4a, i2s4b, i2s5a, i2s5b, iqc0, iqc1, jtag, pe, pe0,
|
/linux-4.4.14/arch/x86/kvm/ |
D | lapic.c | 2146 unsigned long pe; in kvm_apic_accept_events() local 2163 pe = xchg(&apic->pending_events, 0); in kvm_apic_accept_events() 2164 if (test_bit(KVM_APIC_INIT, &pe)) { in kvm_apic_accept_events() 2172 if (test_bit(KVM_APIC_SIPI, &pe) && in kvm_apic_accept_events()
|
/linux-4.4.14/net/core/ |
D | pktgen.c | 3720 struct proc_dir_entry *pe; in pktgen_create_thread() local 3751 pe = proc_create_data(t->tsk->comm, 0600, pn->proc_dir, in pktgen_create_thread() 3753 if (!pe) { in pktgen_create_thread() 3826 struct proc_dir_entry *pe; in pg_net_init() local 3837 pe = proc_create(PGCTRL, 0600, pn->proc_dir, &pktgen_fops); in pg_net_init() 3838 if (pe == NULL) { in pg_net_init()
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/mdp5/ |
D | mdp5_plane.c | 679 bool pe = mdp5_plane->caps & MDP_PIPE_CAP_SW_PIX_EXT; in mdp5_plane_mode_set() local 792 COND(pe, MDP5_PIPE_SRC_OP_MODE_SW_PIX_EXT_OVERRIDE) | in mdp5_plane_mode_set()
|
/linux-4.4.14/drivers/net/wireless/ath/ath10k/ |
D | wmi.c | 3404 struct pulse_event pe; in ath10k_dfs_radar_report() local 3455 pe.ts = tsf64; in ath10k_dfs_radar_report() 3456 pe.freq = ch->center_freq; in ath10k_dfs_radar_report() 3457 pe.width = width; in ath10k_dfs_radar_report() 3458 pe.rssi = rssi; in ath10k_dfs_radar_report() 3459 pe.chirp = (MS(reg0, RADAR_REPORT_REG0_PULSE_IS_CHIRP) != 0); in ath10k_dfs_radar_report() 3462 pe.freq, pe.width, pe.rssi, pe.ts); in ath10k_dfs_radar_report() 3466 if (!ar->dfs_detector->add_pulse(ar->dfs_detector, &pe)) { in ath10k_dfs_radar_report()
|
/linux-4.4.14/drivers/scsi/ |
D | ncr53c8xx.c | 673 char *pe; in sym53c8xx__setup() local 684 val = (int) simple_strtoul(pv, &pe, 0); in sym53c8xx__setup() 689 if (pe && *pe == '/') { in sym53c8xx__setup() 691 while (*pe && *pe != ARG_SEP && in sym53c8xx__setup() 693 driver_setup.tag_ctrl[i++] = *pe++; in sym53c8xx__setup()
|
/linux-4.4.14/kernel/events/ |
D | core.c | 4145 struct period_event *pe = info; in __perf_event_period() local 4146 struct perf_event *event = pe->event; in __perf_event_period() 4148 u64 value = pe->value; in __perf_event_period() 4178 struct period_event pe = { .event = event, }; in perf_event_period() local 4196 pe.value = value; in perf_event_period() 4199 cpu_function_call(event->cpu, __perf_event_period, &pe); in perf_event_period() 4204 if (!task_function_call(task, __perf_event_period, &pe)) in perf_event_period()
|
/linux-4.4.14/arch/mips/include/asm/octeon/ |
D | cvmx-mio-defs.h | 4179 uint64_t pe:1; member 4185 uint64_t pe:1; 4916 uint64_t pe:1; member 4922 uint64_t pe:1;
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-coresight-devices-etm4x | 94 What: /sys/bus/coresight/devices/<memory_map>.etm/pe
|
/linux-4.4.14/drivers/ata/ |
D | sata_dwc_460ex.c | 147 struct ata_probe_ent *pe; /* ptr to probe-ent */ member
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-tegra210.c | 1234 FUNCTION(pe),
|
D | pinctrl-tegra124.c | 1664 FUNCTION(pe),
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | tegra124-jetson-tk1.dts | 1233 nvidia,function = "pe";
|
/linux-4.4.14/drivers/hwtracing/coresight/ |
D | coresight-etm4x.c | 724 static DEVICE_ATTR_RW(pe);
|
/linux-4.4.14/Documentation/filesystems/ |
D | coda.txt | 982 44..1155.. ooppeenn
|