Searched refs:ea (Results 51 - 75 of 159) sorted by relevance

1234567

/linux-master/arch/powerpc/mm/
H A Dioremap.c59 int early_ioremap_range(unsigned long ea, phys_addr_t pa, argument
65 int err = map_kernel_page(ea + i, pa + i, pgprot_nx(prot));
H A Dpgtable.c381 pte_t *__find_linux_pte(pgd_t *pgdir, unsigned long ea, argument
405 pgdp = pgdir + pgd_index(ea);
406 p4dp = p4d_offset(pgdp, ea);
429 pudp = pud_offset(&p4d, ea);
446 pmdp = pmd_offset(&pud, ea);
484 return pte_offset_kernel(&pmd, ea);
490 ret_pte = hugepte_offset(*hpdp, ea, pdshift);
/linux-master/arch/mips/alchemy/common/
H A Dprom.c113 static inline void str2eaddr(unsigned char *ea, unsigned char *str) argument
124 ea[i] = num;
/linux-master/arch/powerpc/include/asm/
H A Dmmu_context.h73 unsigned long ea)
77 int index = ea >> MAX_EA_BITS_PER_CONTEXT;
88 static inline bool need_extra_context(struct mm_struct *mm, unsigned long ea) argument
92 context_id = get_user_context(&mm->context, ea);
106 unsigned long ea)
113 static inline bool need_extra_context(struct mm_struct *mm, unsigned long ea) argument
72 alloc_extended_context(struct mm_struct *mm, unsigned long ea) argument
105 alloc_extended_context(struct mm_struct *mm, unsigned long ea) argument
H A Dsstep.h118 unsigned long ea; member in struct:instruction_op
181 extern int emulate_dcbz(unsigned long ea, struct pt_regs *regs);
H A Dkvm_book3s_64.h640 find_kvm_secondary_pte_unlocked(struct kvm *kvm, unsigned long ea, argument
645 pte = __find_linux_pte(kvm->arch.pgtable, ea, NULL, hshift);
649 static inline pte_t *find_kvm_secondary_pte(struct kvm *kvm, unsigned long ea, argument
656 pte = __find_linux_pte(kvm->arch.pgtable, ea, NULL, hshift);
662 unsigned long ea, unsigned *hshift)
672 pte = __find_linux_pte(kvm->mm->pgd, ea, NULL, hshift);
678 unsigned long ea, unsigned *hshift);
661 find_kvm_host_pte(struct kvm *kvm, unsigned long mmu_seq, unsigned long ea, unsigned *hshift) argument
/linux-master/arch/powerpc/platforms/cell/
H A Dspu_base.c150 static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) argument
155 ret = copro_calculate_slb(spu->mm, ea, &slb);
170 extern int hash_page(unsigned long ea, unsigned long access,
172 static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) argument
176 pr_debug("%s, %llx, %lx\n", __func__, dsisr, ea);
183 (get_region_id(ea) != USER_REGION_ID)) {
186 ret = hash_page(ea,
197 spu->class_1_dar = ea;
210 unsigned long ea = (unsigned long)addr; local
213 if (get_region_id(ea)
230 unsigned long ea = (unsigned long)new_addr; local
[all...]
/linux-master/arch/powerpc/kvm/
H A De500_emulate.c135 gva_t ea; local
164 ea = kvmppc_get_ea_indexed(vcpu, ra, rb);
165 emulated = kvmppc_e500_emul_tlbsx(vcpu, ea);
170 ea = kvmppc_get_ea_indexed(vcpu, ra, rb);
171 emulated = kvmppc_e500_emul_tlbilx(vcpu, type, ea);
176 ea = kvmppc_get_ea_indexed(vcpu, ra, rb);
177 emulated = kvmppc_e500_emul_tlbivax(vcpu, ea);
H A Dtrace_hv.h294 struct kvm_memory_slot *memslot, unsigned long ea,
297 TP_ARGS(vcpu, hptep, memslot, ea, dsisr),
304 __field(unsigned long, ea)
315 __entry->ea = ea;
321 TP_printk("VCPU %d: hpte=0x%lx:0x%lx guest=0x%lx ea=0x%lx,%x slot=0x%llx,0x%x",
324 __entry->ea, __entry->dsisr,
/linux-master/arch/powerpc/kernel/
H A Dhw_breakpoint.c316 int *hit, unsigned long ea)
340 if ((hw_end_addr - 1) >= ea)
347 if (((hw_end_addr - 1) >> 10) != (ea >> 10))
354 if ((ea & 0x800) == ((ea + 64) & 0x800))
389 unsigned long ea = 0; local
403 wp_get_instr_detail(regs, &instr, &type, &size, &ea);
415 if (wp_check_constraints(regs, instr, ea, type, size, info)) {
438 handle_p10dd1_spurious_exception(bp, hit, ea);
315 handle_p10dd1_spurious_exception(struct perf_event **bp, int *hit, unsigned long ea) argument
H A Dmce.c377 uint64_t ea = 0, pa = 0; local
492 ea = evt->u.ue_error.effective_address;
503 ea = evt->u.slb_error.effective_address;
512 ea = evt->u.erat_error.effective_address;
521 ea = evt->u.tlb_error.effective_address;
530 ea = evt->u.user_error.effective_address;
539 ea = evt->u.ra_error.effective_address;
548 ea = evt->u.link_error.effective_address;
566 if (ea && evt->srr0 != ea) {
[all...]
/linux-master/net/appletalk/
H A Daarp.c716 struct elapaarp *ea = aarp_hdr(skb); local
731 if (!skb_pull(skb, sizeof(*ea)))
734 function = ntohs(ea->function);
738 ea->hw_len != ETH_ALEN || ea->pa_len != AARP_PA_ALEN ||
739 ea->pa_src_zero || ea->pa_dst_zero)
743 hash = ea->pa_src_node % (AARP_HASH_SIZE - 1);
746 sa.s_node = ea->pa_src_node;
747 sa.s_net = ea
[all...]
/linux-master/drivers/md/
H A Ddm-cache-policy-smq.c701 static void init_allocator(struct entry_alloc *ea, struct entry_space *es, argument
706 ea->es = es;
707 ea->nr_allocated = 0u;
708 ea->begin = begin;
710 l_init(&ea->free);
712 l_add_tail(ea->es, &ea->free, __get_entry(ea->es, i));
731 static struct entry *alloc_entry(struct entry_alloc *ea) argument
735 if (l_empty(&ea
748 alloc_particular_entry(struct entry_alloc *ea, unsigned int i) argument
761 free_entry(struct entry_alloc *ea, struct entry *e) argument
771 allocator_empty(struct entry_alloc *ea) argument
776 get_index(struct entry_alloc *ea, struct entry *e) argument
781 get_entry(struct entry_alloc *ea, unsigned int index) argument
871 get_sentinel(struct entry_alloc *ea, unsigned int level, bool which) argument
[all...]
/linux-master/arch/powerpc/mm/book3s64/
H A Dhugetlbpage.c20 int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, argument
33 vpn = hpt_vpn(ea, vsid, ssize);
112 hash_failure_debug(ea, access, vsid, trap, ssize,
H A Dradix_pgtable.c69 static int early_map_kernel_page(unsigned long ea, unsigned long pa, argument
82 pgdp = pgd_offset_k(ea);
83 p4dp = p4d_offset(pgdp, ea);
89 pudp = pud_offset(p4dp, ea);
99 pmdp = pmd_offset(pudp, ea);
109 ptep = pte_offset_kernel(pmdp, ea);
112 set_pte_at(&init_mm, ea, ptep, pfn_pte(pfn, flags));
121 static int __map_kernel_page(unsigned long ea, unsigned long pa, argument
143 return early_map_kernel_page(ea, pa, flags, map_page_size,
151 pgdp = pgd_offset_k(ea);
177 radix__map_kernel_page(unsigned long ea, unsigned long pa, pgprot_t flags, unsigned int map_page_size) argument
889 __map_kernel_page_nid(unsigned long ea, unsigned long pa, pgprot_t flags, unsigned int map_page_size, int nid) argument
[all...]
/linux-master/drivers/scsi/qla2xxx/
H A Dqla_init.c38 struct event_arg *ea);
299 struct event_arg ea; local
307 memset(&ea, 0, sizeof(ea));
308 ea.fcport = sp->fcport;
309 ea.data[0] = lio->u.logio.data[0];
310 ea.data[1] = lio->u.logio.data[1];
311 ea.iop[0] = lio->u.logio.iop[0];
312 ea.iop[1] = lio->u.logio.iop[1];
313 ea
508 qla24xx_handle_adisc_event(scsi_qla_host_t *vha, struct event_arg *ea) argument
574 struct event_arg ea; local
721 qla24xx_handle_gnl_done_event(scsi_qla_host_t *vha, struct event_arg *ea) argument
1029 struct event_arg ea; local
1227 struct event_arg ea; local
1271 struct event_arg ea; local
1455 __qla24xx_handle_gpdb_event(scsi_qla_host_t *vha, struct event_arg *ea) argument
1535 qla24xx_handle_gpdb_event(scsi_qla_host_t *vha, struct event_arg *ea) argument
1845 qla2x00_handle_rscn(scsi_qla_host_t *vha, struct event_arg *ea) argument
1932 qla24xx_handle_relogin_event(scsi_qla_host_t *vha, struct event_arg *ea) argument
1959 qla_handle_els_plogi_done(scsi_qla_host_t *vha, struct event_arg *ea) argument
1985 struct event_arg ea; local
2367 qla24xx_handle_prli_done_event(struct scsi_qla_host *vha, struct event_arg *ea) argument
2447 qla24xx_handle_plogi_done_event(struct scsi_qla_host *vha, struct event_arg *ea) argument
[all...]
/linux-master/arch/nios2/kernel/
H A Dprocess.c94 pr_notice("ea: %08lx estatus: %08lx\n",
95 regs->ea, regs->estatus);
174 pr_emerg("PC: %08lx\n", fp->ea);
193 tp = ((unsigned char *) fp->ea) - 0x20;
249 regs->ea = pc;
H A Dentry.S51 * ea-4 = address of interrupted insn (ea must be preserved).
54 * If ea <= cmpxchg_stw and ea > cmpxchg_ldw then saved EA is set to
59 bgtu ea, et, 1f
62 bltu ea, et, 1f
64 mov ea, et
164 ldwio r24, -4(ea) /* instruction that caused the exception */
354 addi ea, ea,
[all...]
H A Dhead.S107 subi ea, ea, 4
H A Dinsnemu.S41 ldw ea, PT_EA(sp)
62 * the exception return address register (ea) as a destination because
76 * The instruction that causes the exception is found at address -4(ea).
146 stw ea, 116(sp)
154 ldw r2,-4(ea) /* r2 = AAAAA,BBBBB,IIIIIIIIIIIIIIII,PPPPPP */
574 ldw ea, 116(sp)
/linux-master/fs/hpfs/
H A Dhpfs.h401 the data btree or some ea or the
402 main ea bootage pointer ea_secno
449 __le32 ea_size_l; /* length of disk-resident ea's */
450 __le32 ea_secno; /* first sector of disk-resident ea's*/
451 __le16 ea_size_s; /* length of fnode-resident ea's */
466 to first fnode-resident ea */
471 u8 ea[316]; /* zero or more EA's, packed together member in struct:fnode
530 /* bit 7 set -> required ea */
547 static inline bool ea_indirect(struct extended_attribute *ea) argument
549 return ea
552 ea_in_anode(struct extended_attribute *ea) argument
[all...]
H A Dmap.c172 struct extended_attribute *ea; local
203 ea = fnode_ea(fnode);
205 while (ea != ea_end) {
206 if (ea > ea_end) {
211 ea = next_ea(ea);
/linux-master/fs/smb/client/
H A Dsmb2inode.c105 struct smb2_file_full_ea_info *ea; local
118 ea = (void *)((u8 *)rsp_iov->iov_base +
122 if ((u8 *)ea > end - sizeof(*ea))
125 nlen = ea->ea_name_length;
126 vlen = le16_to_cpu(ea->ea_value_length);
128 (u8 *)ea + nlen + 1 + vlen > end)
133 if (strncmp(ea->ea_data, SMB2_WSL_XATTR_UID, nlen) &&
134 strncmp(ea->ea_data, SMB2_WSL_XATTR_GID, nlen) &&
135 strncmp(ea
[all...]
/linux-master/arch/nios2/mm/
H A Dfault.c56 regs->ea -= 4;
194 pr_alert("ea = %08lx, ra = %08lx, cause = %ld\n", regs->ea, regs->ra,
/linux-master/arch/nios2/include/asm/
H A Delf.h59 pr_reg[21] = regs->ea; \

Completed in 220 milliseconds

1234567