/linux-4.4.14/fs/hpfs/ |
D | ea.c | 19 struct extended_attribute *ea = (struct extended_attribute *)ex; in hpfs_ea_ext_remove() local 26 if (ea_indirect(ea)) { in hpfs_ea_ext_remove() 27 if (ea_valuelen(ea) != 8) { in hpfs_ea_ext_remove() 32 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 9, ex+4)) in hpfs_ea_ext_remove() 34 hpfs_ea_remove(s, ea_sec(ea), ea_in_anode(ea), ea_len(ea)); in hpfs_ea_ext_remove() 36 pos += ea->namelen + ea_valuelen(ea) + 5; in hpfs_ea_ext_remove() 80 struct extended_attribute *ea; in hpfs_read_ea() local 82 for (ea = fnode_ea(fnode); ea < ea_end; ea = next_ea(ea)) in hpfs_read_ea() 83 if (!strcmp(ea->name, key)) { in hpfs_read_ea() 84 if (ea_indirect(ea)) in hpfs_read_ea() [all …]
|
D | inode.c | 49 void *ea; in hpfs_read_inode() local 62 if ((ea = hpfs_get_ea(i->i_sb, fnode, "UID", &ea_size))) { in hpfs_read_inode() 64 i_uid_write(i, le16_to_cpu(*(__le16*)ea)); in hpfs_read_inode() 67 kfree(ea); in hpfs_read_inode() 69 if ((ea = hpfs_get_ea(i->i_sb, fnode, "GID", &ea_size))) { in hpfs_read_inode() 71 i_gid_write(i, le16_to_cpu(*(__le16*)ea)); in hpfs_read_inode() 74 kfree(ea); in hpfs_read_inode() 76 if ((ea = hpfs_get_ea(i->i_sb, fnode, "SYMLINK", &ea_size))) { in hpfs_read_inode() 77 kfree(ea); in hpfs_read_inode() 87 if ((ea = hpfs_get_ea(i->i_sb, fnode, "MODE", &ea_size))) { in hpfs_read_inode() [all …]
|
D | hpfs_fn.h | 145 static unsigned ea_valuelen(struct extended_attribute *ea) in ea_valuelen() argument 147 return ea->valuelen_lo + 256 * ea->valuelen_hi; in ea_valuelen() 150 static inline struct extended_attribute *next_ea(struct extended_attribute *ea) in next_ea() argument 152 return (struct extended_attribute *)((char *)ea + 5 + ea->namelen + ea_valuelen(ea)); in next_ea() 155 static inline secno ea_sec(struct extended_attribute *ea) in ea_sec() argument 157 return le32_to_cpu(get_unaligned((__le32 *)((char *)ea + 9 + ea->namelen))); in ea_sec() 160 static inline secno ea_len(struct extended_attribute *ea) in ea_len() argument 162 return le32_to_cpu(get_unaligned((__le32 *)((char *)ea + 5 + ea->namelen))); in ea_len() 165 static inline char *ea_data(struct extended_attribute *ea) in ea_data() argument 167 return (char *)((char *)ea + 5 + ea->namelen); in ea_data()
|
D | hpfs.h | 469 u8 ea[316]; /* zero or more EA's, packed together member 545 static inline bool ea_indirect(struct extended_attribute *ea) in ea_indirect() argument 547 return ea->flags & EA_indirect; in ea_indirect() 550 static inline bool ea_in_anode(struct extended_attribute *ea) in ea_in_anode() argument 552 return ea->flags & EA_anode; in ea_in_anode()
|
D | map.c | 171 struct extended_attribute *ea; in hpfs_map_fnode() local 202 ea = fnode_ea(fnode); in hpfs_map_fnode() 204 while (ea != ea_end) { in hpfs_map_fnode() 205 if (ea > ea_end) { in hpfs_map_fnode() 210 ea = next_ea(ea); in hpfs_map_fnode()
|
D | anode.c | 484 struct extended_attribute *ea; in hpfs_remove_fnode() local 490 for (ea = fnode_ea(fnode); ea < ea_end; ea = next_ea(ea)) in hpfs_remove_fnode() 491 if (ea_indirect(ea)) in hpfs_remove_fnode() 492 hpfs_ea_remove(s, ea_sec(ea), ea_in_anode(ea), ea_len(ea)); in hpfs_remove_fnode()
|
D | Makefile | 7 hpfs-objs := alloc.o anode.o buffer.o dentry.o dir.o dnode.o ea.o file.o \
|
/linux-4.4.14/fs/gfs2/ |
D | xattr.h | 16 #define GFS2_EA_REC_LEN(ea) be32_to_cpu((ea)->ea_rec_len) argument 17 #define GFS2_EA_DATA_LEN(ea) be32_to_cpu((ea)->ea_data_len) argument 19 #define GFS2_EA_SIZE(ea) \ argument 20 ALIGN(sizeof(struct gfs2_ea_header) + (ea)->ea_name_len + \ 21 ((GFS2_EA_IS_STUFFED(ea)) ? GFS2_EA_DATA_LEN(ea) : \ 22 (sizeof(__be64) * (ea)->ea_num_ptrs)), 8) 24 #define GFS2_EA_IS_STUFFED(ea) (!(ea)->ea_num_ptrs) argument 25 #define GFS2_EA_IS_LAST(ea) ((ea)->ea_flags & GFS2_EAFLAG_LAST) argument 30 #define GFS2_EA2NAME(ea) ((char *)((struct gfs2_ea_header *)(ea) + 1)) argument 31 #define GFS2_EA2DATA(ea) (GFS2_EA2NAME(ea) + (ea)->ea_name_len) argument [all …]
|
D | xattr.c | 76 struct gfs2_ea_header *ea, 82 struct gfs2_ea_header *ea, *prev = NULL; in ea_foreach_i() local 88 for (ea = GFS2_EA_BH2FIRST(bh);; prev = ea, ea = GFS2_EA2NEXT(ea)) { in ea_foreach_i() 89 if (!GFS2_EA_REC_LEN(ea)) in ea_foreach_i() 91 if (!(bh->b_data <= (char *)ea && (char *)GFS2_EA2NEXT(ea) <= in ea_foreach_i() 94 if (!GFS2_EATYPE_VALID(ea->ea_type)) in ea_foreach_i() 97 error = ea_call(ip, bh, ea, prev, data); in ea_foreach_i() 101 if (GFS2_EA_IS_LAST(ea)) { in ea_foreach_i() 102 if ((char *)GFS2_EA2NEXT(ea) != in ea_foreach_i() 167 struct gfs2_ea_header *ea, struct gfs2_ea_header *prev, in ea_find_i() argument [all …]
|
D | inode.c | 441 struct gfs2_ea_header *ea; in gfs2_init_xattr() local 448 ea = GFS2_EA_BH2FIRST(bh); in gfs2_init_xattr() 449 ea->ea_rec_len = cpu_to_be32(sdp->sd_jbsize); in gfs2_init_xattr() 450 ea->ea_type = GFS2_EATYPE_UNUSED; in gfs2_init_xattr() 451 ea->ea_flags = GFS2_EAFLAG_LAST; in gfs2_init_xattr()
|
/linux-4.4.14/fs/jfs/ |
D | xattr.c | 105 static int is_os2_xattr(struct jfs_ea *ea) in is_os2_xattr() argument 107 return !is_known_namespace(ea->name); in is_os2_xattr() 110 static inline int name_size(struct jfs_ea *ea) in name_size() argument 112 if (is_os2_xattr(ea)) in name_size() 113 return ea->namelen + XATTR_OS2_PREFIX_LEN; in name_size() 115 return ea->namelen; in name_size() 118 static inline int copy_name(char *buffer, struct jfs_ea *ea) in copy_name() argument 120 int len = ea->namelen; in copy_name() 122 if (is_os2_xattr(ea)) { in copy_name() 127 memcpy(buffer, ea->name, ea->namelen); in copy_name() [all …]
|
D | jfs_xattr.h | 36 struct jfs_ea ea[0]; /* Variable length list */ member 46 #define EA_SIZE(ea) \ argument 47 (sizeof (struct jfs_ea) + (ea)->namelen + 1 + \ 48 le16_to_cpu((ea)->valuelen)) 49 #define NEXT_EA(ea) ((struct jfs_ea *) (((char *) (ea)) + (EA_SIZE (ea)))) argument 50 #define FIRST_EA(ealist) ((ealist)->ea)
|
D | namei.c | 51 dxd_t *ea = &JFS_IP(inode)->ea; in free_ea_wmap() local 53 if (ea->flag & DXD_EXTENT) { in free_ea_wmap() 55 invalidate_dxd_metapages(inode, *ea); in free_ea_wmap() 56 dbFree(inode, addressDXD(ea), lengthDXD(ea)); in free_ea_wmap() 58 ea->flag = 0; in free_ea_wmap() 416 if (JFS_IP(ip)->ea.flag & DXD_EXTENT) { in jfs_rmdir() 418 txEA(tid, ip, &JFS_IP(ip)->ea, NULL); in jfs_rmdir() 420 JFS_IP(ip)->ea.flag = 0; in jfs_rmdir() 670 if (JFS_IP(ip)->ea.flag & DXD_EXTENT) in commitZeroLink() 672 txEA(tid, ip, &JFS_IP(ip)->ea, NULL); in commitZeroLink() [all …]
|
D | jfs_inode.c | 142 memset(&jfs_inode->ea, 0, sizeof(dxd_t)); in ialloc()
|
D | jfs_incore.h | 45 dxd_t ea; /* dxd describing ea */ member
|
D | jfs_imap.c | 3096 jfs_ip->ea = dip->di_ea; in copy_from_dinode() 3171 dip->di_ea = jfs_ip->ea; in copy_to_dinode()
|
/linux-4.4.14/arch/powerpc/mm/ |
D | copro_fault.c | 36 int copro_handle_mm_fault(struct mm_struct *mm, unsigned long ea, in copro_handle_mm_fault() argument 51 vma = find_vma(mm, ea); in copro_handle_mm_fault() 55 if (ea < vma->vm_start) { in copro_handle_mm_fault() 58 if (expand_stack(vma, ea)) in copro_handle_mm_fault() 78 *flt = handle_mm_fault(mm, vma, ea, is_write ? FAULT_FLAG_WRITE : 0); in copro_handle_mm_fault() 101 int copro_calculate_slb(struct mm_struct *mm, u64 ea, struct copro_slb *slb) in copro_calculate_slb() argument 106 switch (REGION_ID(ea)) { in copro_calculate_slb() 108 pr_devel("%s: 0x%llx -- USER_REGION_ID\n", __func__, ea); in copro_calculate_slb() 109 psize = get_slice_psize(mm, ea); in copro_calculate_slb() 110 ssize = user_segment_size(ea); in copro_calculate_slb() [all …]
|
D | slb.c | 34 extern void slb_allocate_realmode(unsigned long ea); 35 extern void slb_allocate_user(unsigned long ea); 37 static void slb_allocate(unsigned long ea) in slb_allocate() argument 42 slb_allocate_realmode(ea); in slb_allocate() 48 static inline unsigned long mk_esid_data(unsigned long ea, int ssize, in mk_esid_data() argument 51 return (ea & slb_esid_mask(ssize)) | SLB_ESID_V | index; in mk_esid_data() 54 static inline unsigned long mk_vsid_data(unsigned long ea, int ssize, in mk_vsid_data() argument 57 return (get_kernel_vsid(ea, ssize) << slb_vsid_shift(ssize)) | flags | in mk_vsid_data() 61 static inline void slb_shadow_update(unsigned long ea, int ssize, in slb_shadow_update() argument 73 p->save_area[index].vsid = cpu_to_be64(mk_vsid_data(ea, ssize, flags)); in slb_shadow_update() [all …]
|
D | hash_utils_64.c | 923 static int subpage_protection(struct mm_struct *mm, unsigned long ea) in subpage_protection() argument 929 if (ea >= spt->maxaddr) in subpage_protection() 931 if (ea < 0x100000000UL) { in subpage_protection() 935 sbpm = spt->protptrs[ea >> SBP_L3_SHIFT]; in subpage_protection() 939 sbpp = sbpm[(ea >> SBP_L2_SHIFT) & (SBP_L2_COUNT - 1)]; in subpage_protection() 942 spp = sbpp[(ea >> PAGE_SHIFT) & (SBP_L1_COUNT - 1)]; in subpage_protection() 945 spp >>= 30 - 2 * ((ea >> 12) & 0xf); in subpage_protection() 953 static inline int subpage_protection(struct mm_struct *mm, unsigned long ea) in subpage_protection() argument 959 void hash_failure_debug(unsigned long ea, unsigned long access, in hash_failure_debug() argument 966 ea, access, current->comm); in hash_failure_debug() [all …]
|
D | hugetlbpage-book3e.c | 54 static inline int book3e_tlb_exists(unsigned long ea, unsigned long pid) in book3e_tlb_exists() argument 66 : "=&r"(found) : "r"(ea)); in book3e_tlb_exists() 72 : "=&r"(found) : "r"(ea)); in book3e_tlb_exists() 78 void book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea, in book3e_hugetlb_preload() argument 91 if (unlikely(is_kernel_addr(ea))) in book3e_hugetlb_preload() 97 psize = get_slice_psize(mm, ea); in book3e_hugetlb_preload() 112 if (unlikely(book3e_tlb_exists(ea, mm->context.id))) { in book3e_hugetlb_preload() 124 mas2 = ea & ~((1UL << shift) - 1); in book3e_hugetlb_preload()
|
D | pgtable_64.c | 91 int map_kernel_page(unsigned long ea, unsigned long pa, int flags) in map_kernel_page() argument 99 pgdp = pgd_offset_k(ea); in map_kernel_page() 100 pudp = pud_alloc(&init_mm, pgdp, ea); in map_kernel_page() 103 pmdp = pmd_alloc(&init_mm, pudp, ea); in map_kernel_page() 106 ptep = pte_alloc_kernel(pmdp, ea); in map_kernel_page() 109 set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT, in map_kernel_page() 113 pgdp = pgd_offset_k(ea); in map_kernel_page() 121 pudp = pud_offset(pgdp, ea); in map_kernel_page() 127 pmdp = pmd_offset(pudp, ea); in map_kernel_page() 133 ptep = pte_offset_kernel(pmdp, ea); in map_kernel_page() [all …]
|
D | hugepage-hash64.c | 21 int __hash_page_thp(unsigned long ea, unsigned long access, unsigned long vsid, in __hash_page_thp() argument 84 index = (ea & ~HPAGE_PMD_MASK) >> shift; in __hash_page_thp() 87 vpn = hpt_vpn(ea, vsid, ssize); in __hash_page_thp() 96 flush_hash_hugepage(vsid, ea, pmdp, MMU_PAGE_64K, in __hash_page_thp() 171 hash_failure_debug(ea, access, vsid, trap, ssize, in __hash_page_thp()
|
D | ppc_mmu_32.c | 165 void hash_preload(struct mm_struct *mm, unsigned long ea, in hash_preload() argument 172 pmd = pmd_offset(pud_offset(pgd_offset(mm, ea), ea), ea); in hash_preload() 174 add_hash_page(mm->context.id, ea, pmd_val(*pmd)); in hash_preload()
|
D | hugetlbpage-hash64.c | 21 int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, in __hash_page_huge() argument 33 vpn = hpt_vpn(ea, vsid, ssize); in __hash_page_huge() 116 hash_failure_debug(ea, access, vsid, trap, ssize, in __hash_page_huge()
|
D | mmu_decl.h | 85 extern void hash_preload(struct mm_struct *mm, unsigned long ea, 113 extern int map_kernel_page(unsigned long ea, unsigned long pa, int flags);
|
D | hugetlbpage.c | 978 pte_t *__find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, in __find_linux_pte_or_hugepte() argument 994 pgdp = pgdir + pgd_index(ea); in __find_linux_pte_or_hugepte() 1016 pudp = pud_offset(&pgd, ea); in __find_linux_pte_or_hugepte() 1028 pmdp = pmd_offset(&pud, ea); in __find_linux_pte_or_hugepte() 1054 return pte_offset_kernel(&pmd, ea); in __find_linux_pte_or_hugepte() 1060 ret_pte = hugepte_offset(*hpdp, ea, pdshift); in __find_linux_pte_or_hugepte()
|
D | hash_native_64.c | 370 static void native_hpte_updateboltedpp(unsigned long newpp, unsigned long ea, in native_hpte_updateboltedpp() argument 378 vsid = get_kernel_vsid(ea, ssize); in native_hpte_updateboltedpp() 379 vpn = hpt_vpn(ea, vsid, ssize); in native_hpte_updateboltedpp()
|
/linux-4.4.14/arch/powerpc/lib/ |
D | sstep.c | 38 extern int do_lfs(int rn, unsigned long ea); 39 extern int do_lfd(int rn, unsigned long ea); 40 extern int do_stfs(int rn, unsigned long ea); 41 extern int do_stfd(int rn, unsigned long ea); 42 extern int do_lvx(int rn, unsigned long ea); 43 extern int do_stvx(int rn, unsigned long ea); 44 extern int do_lxvd2x(int rn, unsigned long ea); 45 extern int do_stxvd2x(int rn, unsigned long ea); 84 static long __kprobes address_ok(struct pt_regs *regs, unsigned long ea, int nb) in address_ok() argument 88 return __access_ok(ea, nb, USER_DS); in address_ok() [all …]
|
/linux-4.4.14/arch/nios2/kernel/ |
D | traps.c | 125 fp->ea -= 4; in breakpoint_c() 126 _exception(SIGTRAP, fp, TRAP_BRKPT, fp->ea); in breakpoint_c() 136 fp->ea -= 4; in handle_unaligned_c() 146 pr_alert(" op-code 0x%08lx\n", *(unsigned long *)(fp->ea)); in handle_unaligned_c() 158 fp->ea -= 4; in handle_illegal_c() 159 _exception(SIGILL, fp, ILL_ILLOPC, fp->ea); in handle_illegal_c() 165 fp->ea -= 4; in handle_supervisor_instr() 166 _exception(SIGILL, fp, ILL_PRVOPC, fp->ea); in handle_supervisor_instr() 172 fp->ea -= 4; in handle_diverror_c() 173 _exception(SIGFPE, fp, FPE_INTDIV, fp->ea); in handle_diverror_c() [all …]
|
D | misaligned.c | 75 fp->ea -= 4; in handle_unaligned_c() 83 isn = *(unsigned long *)(fp->ea); in handle_unaligned_c() 156 fp->ea, (unsigned int)addr, in handle_unaligned_c() 160 fp->ea, in handle_unaligned_c() 164 _exception(SIGSEGV, fp, SEGV_MAPERR, fp->ea); in handle_unaligned_c() 174 fp->ea += 4; in handle_unaligned_c() 178 fp->ea, in handle_unaligned_c() 195 fp->ea, fp->ra, fp->sp); in handle_unaligned_c() 199 _exception(SIGBUS, fp, BUS_ADRALN, fp->ea); in handle_unaligned_c() 201 fp->ea += 4; /* else advance */ in handle_unaligned_c()
|
D | kgdb.c | 65 { "pc", GDB_SIZEOF_REG, offsetof(struct pt_regs, ea) }, 114 gdb_regs[GDB_PC] = p->thread.kregs->ea; in sleeping_thread_to_gdb_regs() 119 regs->ea = pc; in kgdb_arch_set_pc() 135 regs->ea = addr; in kgdb_arch_handle_exception() 150 regs->ea -= 4; in kgdb_breakpoint_c()
|
D | signal.c | 83 err |= __get_user(regs->ea, &gregs[27]); in rt_restore_ucontext() 160 err |= __put_user(regs->ea, &gregs[27]); in rt_setup_ucontext() 210 regs->ea = (unsigned long) ksig->ka.sa.sa_handler; in setup_rt_frame() 244 continue_addr = regs->ea; in do_signal() 261 regs->ea = restart_addr; in do_signal() 268 if (unlikely(restart && regs->ea == restart_addr)) { in do_signal() 275 regs->ea = continue_addr; in do_signal() 285 if (unlikely(restart) && regs->ea == restart_addr) { in do_signal() 286 regs->ea = continue_addr; in do_signal()
|
D | ptrace.c | 53 REG_O_ONE(®s->ea, PTR_EA); in genregs_get() 56 REG_O_ONE(®s->ea, PTR_PC); /* use ea for PC */ in genregs_get() 99 REG_IN_ONE(®s->ea, PTR_EA); in genregs_set() 102 REG_IN_ONE(®s->ea, PTR_PC); /* use ea for PC */ in genregs_set()
|
D | process.c | 92 regs->ea, regs->estatus); in show_regs() 169 pr_emerg("PC: %08lx\n", fp->ea); in dump() 188 tp = ((unsigned char *) fp->ea) - 0x20; in dump() 247 regs->ea = pc; in start_thread()
|
D | entry.S | 59 bgtu ea, et, 1f 62 bltu ea, et, 1f 64 mov ea, et 164 ldwio r24, -4(ea) /* instruction that caused the exception */ 346 addi ea, ea, -4 /* re-issue the interrupted instruction */ 347 stw ea, PT_EA(sp)
|
D | insnemu.S | 53 ldw ea, PT_EA(sp) 158 stw ea, 116(sp) 166 ldw r2,-4(ea) /* r2 = AAAAA,BBBBB,IIIIIIIIIIIIIIII,PPPPPP */ 586 ldw ea, 116(sp)
|
D | head.S | 107 subi ea, ea, 4
|
D | asm-offsets.c | 57 OFFSET(PT_EA, pt_regs, ea); in main()
|
/linux-4.4.14/drivers/misc/cxl/ |
D | fault.c | 88 u64 ea) in cxl_fault_segment() argument 93 if (!(rc = copro_calculate_slb(mm, ea, &slb))) { in cxl_fault_segment() 116 struct mm_struct *mm, u64 ea) in cxl_handle_segment_miss() argument 120 pr_devel("CXL interrupt: Segment fault pe: %i ea: %#llx\n", ctx->pe, ea); in cxl_handle_segment_miss() 121 trace_cxl_ste_miss(ctx, ea); in cxl_handle_segment_miss() 123 if ((rc = cxl_fault_segment(ctx, mm, ea))) in cxl_handle_segment_miss() 226 static void cxl_prefault_one(struct cxl_context *ctx, u64 ea) in cxl_prefault_one() argument 244 rc = cxl_fault_segment(ctx, mm, ea); in cxl_prefault_one() 250 static u64 next_segment(u64 ea, u64 vsid) in next_segment() argument 253 ea |= (1ULL << 40) - 1; in next_segment() [all …]
|
/linux-4.4.14/fs/udf/ |
D | misc.c | 50 uint8_t *ea = NULL, *ad = NULL; in udf_add_extendedattr() local 55 ea = iinfo->i_ext.i_data; in udf_add_extendedattr() 59 ad = ea; in udf_add_extendedattr() 70 eahd = (struct extendedAttrHeaderDesc *)ea; in udf_add_extendedattr() 107 memmove(&ea[offset - aal + size], in udf_add_extendedattr() 108 &ea[aal], offset - aal); in udf_add_extendedattr() 117 memmove(&ea[offset - ial + size], in udf_add_extendedattr() 118 &ea[ial], offset - ial); in udf_add_extendedattr() 128 memmove(&ea[offset - aal + size], in udf_add_extendedattr() 129 &ea[aal], offset - aal); in udf_add_extendedattr() [all …]
|
D | namei.c | 904 uint8_t *ea; in udf_symlink() local 955 ea = epos.bh->b_data + udf_ext0_offset(inode); in udf_symlink() 957 ea = iinfo->i_ext.i_data + iinfo->i_lenEAttr; in udf_symlink() 960 pc = (struct pathComponent *)ea; in udf_symlink() 979 pc = (struct pathComponent *)(ea + elen); in udf_symlink()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | mmu-hash64.h | 288 static inline unsigned long hpt_vpn(unsigned long ea, in hpt_vpn() argument 295 return (vsid << (s_shift - VPN_SHIFT)) | ((ea >> VPN_SHIFT) & mask); in hpt_vpn() 324 extern int __hash_page_4K(unsigned long ea, unsigned long access, 327 extern int __hash_page_64K(unsigned long ea, unsigned long access, 332 extern int hash_page_mm(struct mm_struct *mm, unsigned long ea, 335 extern int hash_page(unsigned long ea, unsigned long access, unsigned long trap, 337 int __hash_page_huge(unsigned long ea, unsigned long access, unsigned long vsid, 341 extern int __hash_page_thp(unsigned long ea, unsigned long access, 345 static inline int __hash_page_thp(unsigned long ea, unsigned long access, in __hash_page_thp() argument 354 extern void hash_failure_debug(unsigned long ea, unsigned long access, [all …]
|
D | copro.h | 18 int copro_handle_mm_fault(struct mm_struct *mm, unsigned long ea, 21 int copro_calculate_slb(struct mm_struct *mm, u64 ea, struct copro_slb *slb);
|
D | pci-bridge.h | 272 unsigned long ea = (unsigned long)address; in isa_vaddr_is_ioport() local 273 return ea >= ISA_IO_BASE && ea < ISA_IO_END; in isa_vaddr_is_ioport()
|
D | pgtable.h | 261 pte_t *__find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, 263 static inline pte_t *find_linux_pte_or_hugepte(pgd_t *pgdir, unsigned long ea, in find_linux_pte_or_hugepte() argument 270 return __find_linux_pte_or_hugepte(pgdir, ea, is_thp, shift); in find_linux_pte_or_hugepte()
|
D | kvm_ppc.h | 667 ulong ea; in kvmppc_get_ea_indexed() local 670 ea = kvmppc_get_gpr(vcpu, rb); in kvmppc_get_ea_indexed() 672 ea += kvmppc_get_gpr(vcpu, ra); in kvmppc_get_ea_indexed() 681 ea = (uint32_t)ea; in kvmppc_get_ea_indexed() 683 return ea; in kvmppc_get_ea_indexed()
|
D | sstep.h | 82 unsigned long ea; member
|
D | machdep.h | 47 unsigned long ea, 57 void (*hpte_removebolted)(unsigned long ea,
|
D | hugetlb.h | 86 void book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea,
|
D | pgtable-ppc64.h | 77 #define REGION_ID(ea) (((unsigned long)(ea)) >> REGION_SHIFT) argument
|
D | kvm_book3s.h | 117 extern void kvmppc_mmu_pte_flush(struct kvm_vcpu *vcpu, ulong ea, ulong ea_mask);
|
D | io.h | 735 extern void __iomem * __ioremap_at(phys_addr_t pa, void *ea, 737 extern void __iounmap_at(void *ea, unsigned long size);
|
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/ |
D | fault.c | 37 unsigned long ea, int type) in spufs_handle_event() argument 56 info.si_addr = (void __user *)ea; in spufs_handle_event() 112 u64 ea, dsisr, access; in spufs_handle_class1() local 126 ea = ctx->csa.class_1_dar; in spufs_handle_class1() 134 pr_debug("ctx %p: ea %016llx, dsisr %016llx state %d\n", ctx, ea, in spufs_handle_class1() 147 ret = hash_page(ea, access, 0x300, dsisr); in spufs_handle_class1() 152 ret = copro_handle_mm_fault(current->mm, ea, dsisr, &flt); in spufs_handle_class1() 187 spufs_handle_event(ctx, ea, SPE_EVENT_SPE_DATA_STORAGE); in spufs_handle_class1()
|
D | spufs.h | 178 uint64_t ea; /* effective address */ member
|
D | hw_ops.c | 296 out_be64(&prob->mfc_ea_W, cmd->ea); in spu_hw_send_mfc_command()
|
D | switch.c | 778 static inline int send_mfc_dma(struct spu *spu, unsigned long ea, in send_mfc_dma() argument 797 out_be64(&prob->mfc_ea_W, ea); in send_mfc_dma() 806 ea += transfer_size; in send_mfc_dma()
|
D | file.c | 1606 cmd->ea, cmd->size, cmd->tag, cmd->cmd); in spufs_check_valid_dma() 1621 if ((cmd->lsa & 0xf) != (cmd->ea &0xf)) { in spufs_check_valid_dma() 1623 cmd->ea, cmd->lsa); in spufs_check_valid_dma()
|
/linux-4.4.14/arch/powerpc/math-emu/ |
D | stfiwx.c | 6 stfiwx(u32 *frS, void *ea) in stfiwx() argument 9 printk("%s: %p %p\n", __func__, frS, ea); in stfiwx() 12 if (copy_to_user(ea, &frS[1], sizeof(frS[1]))) in stfiwx()
|
D | lfd.c | 9 lfd(void *frD, void *ea) in lfd() argument 11 if (copy_from_user(frD, ea, sizeof(double))) in lfd() 14 printk("%s: D %p, ea %p: ", __func__, frD, ea); in lfd()
|
D | stfd.c | 6 stfd(void *frS, void *ea) in stfd() argument 10 printk("%s: S %p, ea %p: ", __func__, frS, ea); in stfd() 16 if (copy_to_user(ea, frS, sizeof(double))) in stfd()
|
D | stfs.c | 11 stfs(void *frS, void *ea) in stfs() argument 19 printk("%s: S %p, ea %p\n", __func__, frS, ea); in stfs() 37 if (copy_to_user(ea, &f, sizeof(float))) in stfs()
|
D | lfs.c | 11 lfs(void *frD, void *ea) in lfs() argument 19 printk("%s: D %p, ea %p\n", __func__, frD, ea); in lfs() 22 if (copy_from_user(&f, ea, sizeof(float))) in lfs()
|
/linux-4.4.14/net/appletalk/ |
D | aarp.c | 722 struct elapaarp *ea = aarp_hdr(skb); in aarp_rcv() local 737 if (!skb_pull(skb, sizeof(*ea))) in aarp_rcv() 740 function = ntohs(ea->function); in aarp_rcv() 744 ea->hw_len != ETH_ALEN || ea->pa_len != AARP_PA_ALEN || in aarp_rcv() 745 ea->pa_src_zero || ea->pa_dst_zero) in aarp_rcv() 749 hash = ea->pa_src_node % (AARP_HASH_SIZE - 1); in aarp_rcv() 752 sa.s_node = ea->pa_src_node; in aarp_rcv() 753 sa.s_net = ea->pa_src_net; in aarp_rcv() 761 ifa->address.s_node == ea->pa_dst_node && in aarp_rcv() 762 ifa->address.s_net == ea->pa_dst_net) { in aarp_rcv() [all …]
|
/linux-4.4.14/drivers/md/ |
D | dm-cache-policy-smq.c | 678 static void init_allocator(struct entry_alloc *ea, struct entry_space *es, in init_allocator() argument 683 ea->es = es; in init_allocator() 684 ea->nr_allocated = 0u; in init_allocator() 685 ea->begin = begin; in init_allocator() 687 l_init(&ea->free); in init_allocator() 689 l_add_tail(ea->es, &ea->free, __get_entry(ea->es, i)); in init_allocator() 705 static struct entry *alloc_entry(struct entry_alloc *ea) in alloc_entry() argument 709 if (l_empty(&ea->free)) in alloc_entry() 712 e = l_pop_tail(ea->es, &ea->free); in alloc_entry() 714 ea->nr_allocated++; in alloc_entry() [all …]
|
/linux-4.4.14/arch/powerpc/platforms/cell/ |
D | spu_base.c | 164 static int __spu_trap_data_seg(struct spu *spu, unsigned long ea) in __spu_trap_data_seg() argument 169 ret = copro_calculate_slb(spu->mm, ea, &slb); in __spu_trap_data_seg() 184 extern int hash_page(unsigned long ea, unsigned long access, 186 static int __spu_trap_data_map(struct spu *spu, unsigned long ea, u64 dsisr) in __spu_trap_data_map() argument 190 pr_debug("%s, %llx, %lx\n", __func__, dsisr, ea); in __spu_trap_data_map() 197 (REGION_ID(ea) != USER_REGION_ID)) { in __spu_trap_data_map() 200 ret = hash_page(ea, _PAGE_PRESENT, 0x300, dsisr); in __spu_trap_data_map() 209 spu->class_1_dar = ea; in __spu_trap_data_map() 222 unsigned long ea = (unsigned long)addr; in __spu_kernel_slb() local 225 if (REGION_ID(ea) == KERNEL_REGION_ID) in __spu_kernel_slb() [all …]
|
/linux-4.4.14/arch/nios2/mm/ |
D | extable.c | 18 fixup = search_exception_tables(regs->ea); in fixup_exception() 20 regs->ea = fixup->fixup; in fixup_exception()
|
D | fault.c | 55 regs->ea -= 4; in do_page_fault() 87 if (!user_mode(regs) && !search_exception_tables(regs->ea)) in do_page_fault() 211 pr_alert("ea = %08lx, ra = %08lx, cause = %ld\n", regs->ea, regs->ra, in do_page_fault()
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_flow_table.c | 709 struct mlx5e_eth_addr_db *ea = &priv->eth_addr; in mlx5e_set_rx_mode_work() local 717 bool enable_promisc = !ea->promisc_enabled && promisc_enabled; in mlx5e_set_rx_mode_work() 718 bool disable_promisc = ea->promisc_enabled && !promisc_enabled; in mlx5e_set_rx_mode_work() 719 bool enable_allmulti = !ea->allmulti_enabled && allmulti_enabled; in mlx5e_set_rx_mode_work() 720 bool disable_allmulti = ea->allmulti_enabled && !allmulti_enabled; in mlx5e_set_rx_mode_work() 721 bool enable_broadcast = !ea->broadcast_enabled && broadcast_enabled; in mlx5e_set_rx_mode_work() 722 bool disable_broadcast = ea->broadcast_enabled && !broadcast_enabled; in mlx5e_set_rx_mode_work() 725 mlx5e_add_eth_addr_rule(priv, &ea->promisc, MLX5E_PROMISC); in mlx5e_set_rx_mode_work() 731 mlx5e_add_eth_addr_rule(priv, &ea->allmulti, MLX5E_ALLMULTI); in mlx5e_set_rx_mode_work() 733 mlx5e_add_eth_addr_rule(priv, &ea->broadcast, MLX5E_FULLMATCH); in mlx5e_set_rx_mode_work() [all …]
|
/linux-4.4.14/arch/powerpc/kvm/ |
D | e500_emulate.c | 138 gva_t ea; in kvmppc_core_emulate_op_e500() local 167 ea = kvmppc_get_ea_indexed(vcpu, ra, rb); in kvmppc_core_emulate_op_e500() 168 emulated = kvmppc_e500_emul_tlbsx(vcpu, ea); in kvmppc_core_emulate_op_e500() 173 ea = kvmppc_get_ea_indexed(vcpu, ra, rb); in kvmppc_core_emulate_op_e500() 174 emulated = kvmppc_e500_emul_tlbilx(vcpu, type, ea); in kvmppc_core_emulate_op_e500() 179 ea = kvmppc_get_ea_indexed(vcpu, ra, rb); in kvmppc_core_emulate_op_e500() 180 emulated = kvmppc_e500_emul_tlbivax(vcpu, ea); in kvmppc_core_emulate_op_e500()
|
D | trace_hv.h | 275 struct kvm_memory_slot *memslot, unsigned long ea, 278 TP_ARGS(vcpu, hptep, memslot, ea, dsisr), 285 __field(unsigned long, ea) 296 __entry->ea = ea; 305 __entry->ea, __entry->dsisr,
|
D | book3s_64_mmu.c | 454 static void kvmppc_mmu_book3s_64_slbie(struct kvm_vcpu *vcpu, u64 ea) in kvmppc_mmu_book3s_64_slbie() argument 459 dprintk("KVM MMU: slbie(0x%llx)\n", ea); in kvmppc_mmu_book3s_64_slbie() 461 slbe = kvmppc_mmu_book3s_64_find_slbe(vcpu, ea); in kvmppc_mmu_book3s_64_slbie() 466 dprintk("KVM MMU: slbie(0x%llx, 0x%llx)\n", ea, slbe->esid); in kvmppc_mmu_book3s_64_slbie() 473 kvmppc_mmu_flush_segment(vcpu, ea & ~(seg_size - 1), seg_size); in kvmppc_mmu_book3s_64_slbie() 580 ulong ea = esid << SID_SHIFT; in kvmppc_mmu_book3s_64_esid_to_vsid() local 588 slb = kvmppc_mmu_book3s_64_find_slbe(vcpu, ea); in kvmppc_mmu_book3s_64_esid_to_vsid()
|
D | e500_mmu.c | 248 int kvmppc_e500_emul_tlbivax(struct kvm_vcpu *vcpu, gva_t ea) in kvmppc_e500_emul_tlbivax() argument 254 ia = (ea >> 2) & 0x1; in kvmppc_e500_emul_tlbivax() 257 tlbsel = (ea >> 3) & 0x1; in kvmppc_e500_emul_tlbivax() 265 ea &= 0xfffff000; in kvmppc_e500_emul_tlbivax() 266 esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, in kvmppc_e500_emul_tlbivax() 296 gva_t ea) in tlbilx_one() argument 301 esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, pid, -1); in tlbilx_one() 310 int kvmppc_e500_emul_tlbilx(struct kvm_vcpu *vcpu, int type, gva_t ea) in kvmppc_e500_emul_tlbilx() argument 319 tlbilx_one(vcpu_e500, pid, ea); in kvmppc_e500_emul_tlbilx() 344 int kvmppc_e500_emul_tlbsx(struct kvm_vcpu *vcpu, gva_t ea) in kvmppc_e500_emul_tlbsx() argument [all …]
|
D | book3s_32_mmu.c | 353 static void kvmppc_mmu_book3s_32_tlbie(struct kvm_vcpu *vcpu, ulong ea, bool large) in kvmppc_mmu_book3s_32_tlbie() argument 360 kvmppc_mmu_pte_flush(v, ea, 0x0FFFF000); in kvmppc_mmu_book3s_32_tlbie() 366 ulong ea = esid << SID_SHIFT; in kvmppc_mmu_book3s_32_esid_to_vsid() local 372 sr = find_sr(vcpu, ea); in kvmppc_mmu_book3s_32_esid_to_vsid()
|
D | e500.h | 132 int kvmppc_e500_emul_tlbivax(struct kvm_vcpu *vcpu, gva_t ea); 133 int kvmppc_e500_emul_tlbilx(struct kvm_vcpu *vcpu, int type, gva_t ea); 134 int kvmppc_e500_emul_tlbsx(struct kvm_vcpu *vcpu, gva_t ea);
|
D | book3s_64_mmu_hv.c | 300 unsigned long ea) in kvmppc_mmu_get_real_addr() argument 305 return (r & HPTE_R_RPN & ~ra_mask) | (ea & ra_mask); in kvmppc_mmu_get_real_addr() 392 unsigned long gpa, gva_t ea, int is_store) in kvmppc_hv_emulate_mmio() argument 432 vcpu->arch.vaddr_accessed = ea; in kvmppc_hv_emulate_mmio() 437 unsigned long ea, unsigned long dsisr) in kvmppc_book3s_hv_page_fault() argument 461 if (ea != vcpu->arch.pgfault_addr) in kvmppc_book3s_hv_page_fault() 483 gpa = gpa_base | (ea & (psize - 1)); in kvmppc_book3s_hv_page_fault() 487 trace_kvm_page_fault_enter(vcpu, hpte, memslot, ea, dsisr); in kvmppc_book3s_hv_page_fault() 491 return kvmppc_hv_emulate_mmio(run, vcpu, gpa, ea, in kvmppc_book3s_hv_page_fault()
|
D | book3s_64_mmu_host.c | 355 void kvmppc_mmu_flush_segment(struct kvm_vcpu *vcpu, ulong ea, ulong seg_size) in kvmppc_mmu_flush_segment() argument 363 (svcpu->slb[i].esid & seg_mask) == ea) { in kvmppc_mmu_flush_segment()
|
/linux-4.4.14/arch/mips/sgi-ip32/ |
D | ip32-setup.c | 49 static inline void str2eaddr(unsigned char *ea, unsigned char *str) in str2eaddr() argument 60 ea[i] = num; in str2eaddr()
|
/linux-4.4.14/arch/nios2/include/asm/ |
D | processor.h | 84 #define thread_saved_pc(tsk) ((tsk)->thread.kregs->ea) 92 #define KSTK_EIP(tsk) ((tsk)->thread.kregs->ea)
|
D | entry.h | 61 stw ea, PT_EA(sp) 85 ldw ea, PT_EA(sp)
|
D | ptrace.h | 44 unsigned long ea; /* Exception return address (pc) */ member
|
D | elf.h | 72 pr_reg[21] = regs->ea; \
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | fwil_types.h | 191 u8 ea[ETH_ALEN]; /* Station address */ member 427 u8 ea[ETH_ALEN]; /* per station */ member 449 u8 ea[ETH_ALEN]; /* per station */ member 455 u8 ea[ETH_ALEN]; member 471 u8 ea[ETH_ALEN]; /* Station address */ member
|
D | fwsignal.c | 393 u8 ea[ETH_ALEN]; member 726 memcpy(&desc->ea[0], addr, ETH_ALEN); in brcmf_fws_macdesc_init() 733 "enter: ea=%pM, ifidx=%u\n", desc->ea, desc->interface_id); in brcmf_fws_macdesc_deinit() 741 brcmf_fws_macdesc_lookup(struct brcmf_fws_info *fws, u8 *ea) in brcmf_fws_macdesc_lookup() argument 746 if (ea == NULL) in brcmf_fws_macdesc_lookup() 751 if (entry->occupied && !memcmp(entry->ea, ea, ETH_ALEN)) in brcmf_fws_macdesc_lookup()
|
D | cfg80211.c | 431 memcpy(key_le->ea, key->ea, sizeof(key->ea)); in convert_key_from_CPU() 1940 memcpy(&scbval.ea, &profile->bssid, ETH_ALEN); in brcmf_cfg80211_disconnect() 2074 memcpy((char *)&key.ea, (void *)mac_addr, ETH_ALEN); in brcmf_add_keyext() 4357 memcpy(&scbval.ea, params->mac, ETH_ALEN); in brcmf_cfg80211_del_station() 4632 memcpy(info.ea, peer, ETH_ALEN); in brcmf_cfg80211_tdls_oper()
|
D | p2p.c | 2012 struct brcmf_if *ifp, u8 ea[ETH_ALEN], in brcmf_p2p_request_p2p_if() 2023 memcpy(if_request.addr, ea, ETH_ALEN); in brcmf_p2p_request_p2p_if()
|
/linux-4.4.14/arch/mips/alchemy/common/ |
D | prom.c | 92 static inline void str2eaddr(unsigned char *ea, unsigned char *str) in str2eaddr() argument 103 ea[i] = num; in str2eaddr()
|
/linux-4.4.14/arch/unicore32/lib/ |
D | copy_template.S | 109 ldr1b r1, r4, ea, abort=21f 110 ldr1b r1, r10, ea, abort=21f 112 str1b r0, r4, ea, abort=21f 113 str1b r0, r10, ea, abort=21f
|
/linux-4.4.14/arch/openrisc/kernel/ |
D | traps.c | 173 unsigned long ea, unsigned long vector) in nommu_dump_state() argument 178 printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea, vector); in nommu_dump_state() 276 void unhandled_exception(struct pt_regs *regs, int ea, int vector) in unhandled_exception() argument 279 ea, vector); in unhandled_exception()
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | lpar.c | 362 unsigned long ea, in pSeries_lpar_hpte_updateboltedpp() argument 368 vsid = get_kernel_vsid(ea, ssize); in pSeries_lpar_hpte_updateboltedpp() 369 vpn = hpt_vpn(ea, vsid, ssize); in pSeries_lpar_hpte_updateboltedpp() 498 static void pSeries_lpar_hpte_removebolted(unsigned long ea, in pSeries_lpar_hpte_removebolted() argument 504 vsid = get_kernel_vsid(ea, ssize); in pSeries_lpar_hpte_removebolted() 505 vpn = hpt_vpn(ea, vsid, ssize); in pSeries_lpar_hpte_removebolted()
|
/linux-4.4.14/arch/sh/mm/ |
D | cache-sh4.c | 323 unsigned long a, ea, p; in __flush_cache_one() local 353 ea = base_addr + PAGE_SIZE; in __flush_cache_one() 367 } while (a < ea); in __flush_cache_one()
|
/linux-4.4.14/Documentation/zh_CN/ |
D | oops-tracing.txt | 97 Code: f9 0f 8d f9 00 00 00 8d 42 0c e8 dd 26 11 c7 a1 60 ea 2b f9 8b 50 08 a1 98 64 ea 2b f9 8d 34 82 8b 1e 85 db 74 6d 8b 15 60 ea 2b f9 <8b> 43 04 39 42 54
|
/linux-4.4.14/drivers/staging/lustre/lustre/osc/ |
D | osc_internal.h | 93 struct obdo *oa, struct lov_stripe_md **ea, 96 struct lov_stripe_md **ea, struct obd_trans_info *oti);
|
D | osc_request.c | 435 struct lov_stripe_md **ea, struct obd_trans_info *oti) in osc_real_create() argument 443 LASSERT(ea); in osc_real_create() 445 lsm = *ea; in osc_real_create() 500 *ea = lsm; in osc_real_create() 517 if (rc && !*ea) in osc_real_create() 693 struct obdo *oa, struct lov_stripe_md **ea, in osc_create() argument 699 LASSERT(ea); in osc_create() 704 return osc_real_create(exp, oa, ea, oti); in osc_create() 708 return osc_real_create(exp, oa, ea, oti); in osc_create() 727 struct obdo *oa, struct lov_stripe_md *ea, in osc_destroy() argument
|
/linux-4.4.14/arch/mips/pmcs-msp71xx/ |
D | msp_prom.c | 86 int str2eaddr(unsigned char *ea, unsigned char *str) in str2eaddr() argument 93 ea[index++] = num; in str2eaddr() 103 ea[index++] = num; in str2eaddr()
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 51 .long R(5f, a2, a2, fd), R(45, af, af, ea) 69 .long R(7f, b2, b2, cd), R(ea, 75, 75, 9f) 131 .long R(f3, f4, f4, 07), R(cf, ea, ea, 25) 178 .long R(45, ea, 0e, 98), R(5d, fe, c0, e1) 266 .long R(ea, 9f, 09, d4), R(29, b0, 7c, d6) 277 .long R(9d, 5e, ea, 04), R(01, 8c, 35, 5d) 287 .long R(53, f7, cd, ea), R(5f, fd, aa, 5b)
|
/linux-4.4.14/drivers/base/ |
D | core.c | 152 struct dev_ext_attribute *ea = to_ext_attr(attr); in device_store_ulong() local 157 *(unsigned long *)(ea->var) = new; in device_store_ulong() 167 struct dev_ext_attribute *ea = to_ext_attr(attr); in device_show_ulong() local 168 return snprintf(buf, PAGE_SIZE, "%lx\n", *(unsigned long *)(ea->var)); in device_show_ulong() 176 struct dev_ext_attribute *ea = to_ext_attr(attr); in device_store_int() local 181 *(int *)(ea->var) = new; in device_store_int() 191 struct dev_ext_attribute *ea = to_ext_attr(attr); in device_show_int() local 193 return snprintf(buf, PAGE_SIZE, "%d\n", *(int *)(ea->var)); in device_show_int() 200 struct dev_ext_attribute *ea = to_ext_attr(attr); in device_store_bool() local 202 if (strtobool(buf, ea->var) < 0) in device_store_bool() [all …]
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/ |
D | scb.h | 69 u8 ea[ETH_ALEN]; /* station address */ member
|
/linux-4.4.14/drivers/staging/lustre/lustre/mdc/ |
D | mdc_internal.h | 57 void *ea, int ealen, void *ea2, int ea2len); 132 void *ea, int ealen, void *ea2, int ea2len,
|
D | mdc_lib.c | 306 void *ea, int ealen, void *ea2, int ea2len) in mdc_setattr_pack() argument 326 if (ea == NULL) { /* Remove LOV EA */ in mdc_setattr_pack() 332 memcpy(lum, ea, ealen); in mdc_setattr_pack()
|
D | mdc_reint.c | 104 void *ea, int ealen, void *ea2, int ea2len, in mdc_setattr() argument 149 mdc_setattr_pack(req, op_data, ea, ealen, ea2, ea2len); in mdc_setattr()
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | x_snan.S | 144 movel EXC_EA(%a6),%a0 |get <ea> from exc frame 173 tstl %a0 |check if <ea> is 0 195 tstl %a0 |check if <ea> is 0 217 tstl %a0 |check if <ea> is 0
|
D | x_fline.S | 9 | <ea> field. If so, handle here and return. Otherwise, it 42 | fmovecr with non-zero <ea> handling here
|
D | gen_except.S | 95 | Frame is an unimp frame possible resulting from an fmove <ea>,fp0 325 | by doing an fmove <ea>,fp0. The exception operand, in
|
D | x_operr.S | 272 | Destination is memory. Get <ea> from integer exception frame
|
D | res_func.S | 10 | For packed move out (fmove.p fpm,<ea>) the operation is
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | pfpsp.S | 1580 # is the ea mode pre-decrement of the stack pointer from supervisor mode? 1913 # shift the stack frame "up". we don't really care about the <ea> field. 2027 # shift stack frame "up". who cares about <ea> field. 2982 # call fmovm_calc_ea which will go through the ea calc process and, 2998 # the <ea> field is let as undefined. 3029 mov.l 0x2(%sp),0x8(%sp) # store ea 3190 mov.b 1+EXC_OPWORD(%a6),%d1 # extract <ea> mode,reg 3294 # register must get updated by calling _calc_ea_fout(). If the <ea> # 3360 mov.b 1+EXC_OPWORD(%a6),%d1 # extract <ea> mode,reg 3848 # _dcalc_ea(): calc correct <ea> from <ea> stacked on exception # [all …]
|
D | isp.S | 925 jmp (tbl_ea_mode.b,%pc,%d0.w*1) # jmp to correct ea mode 1372 # word, long: <ea> of the data is the current extension word # 1393 mov.w %d0,%a0 # return <ea> in a0 1407 mov.l %d0,%a0 # return <ea> in a0 1426 subq.l &0x2,%a0 # adjust <ea>
|
D | fpsp.S | 1581 # is the ea mode pre-decrement of the stack pointer from supervisor mode? 1914 # shift the stack frame "up". we don't really care about the <ea> field. 2028 # shift stack frame "up". who cares about <ea> field. 2983 # call fmovm_calc_ea which will go through the ea calc process and, 2999 # the <ea> field is let as undefined. 3030 mov.l 0x2(%sp),0x8(%sp) # store ea 3191 mov.b 1+EXC_OPWORD(%a6),%d1 # extract <ea> mode,reg 3295 # register must get updated by calling _calc_ea_fout(). If the <ea> # 3361 mov.b 1+EXC_OPWORD(%a6),%d1 # extract <ea> mode,reg 3837 # non-zero <ea> field. These may get flagged as "Line F" but should # [all …]
|
D | itest.S | 120 ### ea 1285 cas.w %d1,%d2,(%a0) # Dc,Du,<ea> 1312 cas.w %d1,%d2,(%a0) # Dc,Du,<ea> 1340 cas.l %d1,%d2,(%a0) # Dc,Du,<ea> 1367 cas.l %d1,%d2,(%a0) # Dc,Du,<ea> 1395 cas.l %d1,%d2,(%a0) # Dc,Du,<ea> 1422 cas.l %d1,%d2,(%a0) # Dc,Du,<ea>
|
D | fplsp.S | 281 set EXC_EA, 0xc # stacked <ea> 527 set mia7_flg, 0x04 # flag bit: (a7)+ <ea> 528 set mda7_flg, 0x08 # flag bit: -(a7) <ea> 530 set immed_flg, 0x80 # flag bit: &<data> <ea>
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | ilsp.doc | 83 # mulu.l <ea>,Dh:Dl 97 # divu.l <ea>,Dr:Dq 117 # cmp2.l <ea>,Rn
|
D | ftest.sa | 66 dc.l $11f861ff,$000011fa,$4a0066ff,$000011ea 243 dc.l $06e861ff,$000006ea,$4a0066ff,$000006da
|
D | itest.sa | 152 dc.l $66ff0000,$461e61ff,$000045ea,$4a0066ff 408 dc.l $48ee7fff,$ffc061ff,$000035ea,$4a0066ff 668 dc.l $000025ea,$42827602,$49eeff74,$78f03d7c 716 dc.l $000022ea,$42827602,$204f4fee,$ff743d7c
|
D | fplsp.sa | 289 dc.l $ff631d41,$ff4e4a01,$660861ff,$000038ea 735 dc.l $600661ff,$000048ea,$4cee0303,$ff9cf22e
|
D | pfpsp.sa | 702 dc.l $004000ea,$00240008,$4a280002,$6b0000dc
|
/linux-4.4.14/drivers/net/ethernet/tile/ |
D | tilepro.c | 935 netio_ipp_address_t ea = { in tile_net_open_aux() local 941 ea.pte = hv_pte_set_lotar(ea.pte, epp_lotar); in tile_net_open_aux() 942 ea.pte = hv_pte_set_mode(ea.pte, HV_PTE_MODE_CACHE_TILE_L3); in tile_net_open_aux() 944 (HV_VirtAddr)&ea, in tile_net_open_aux() 945 sizeof(ea), in tile_net_open_aux()
|
/linux-4.4.14/arch/powerpc/platforms/powernv/ |
D | opal.c | 407 uint64_t ea = get_mce_fault_addr(evt); in opal_recover_mce() local 415 } else if (ea && !is_kernel_addr(ea)) { in opal_recover_mce()
|
/linux-4.4.14/arch/x86/kvm/ |
D | emulate.c | 652 la = seg_base(ctxt, addr.seg) + addr.ea; in __linearize() 680 if (addr.ea <= lim) in __linearize() 684 if (addr.ea > lim) in __linearize() 689 *max_size = (u64)lim + 1 - addr.ea; in __linearize() 722 .ea = dst }; in assign_eip() 725 addr.ea = dst & ((1UL << (ctxt->op_bytes << 3)) - 1); in assign_eip() 728 ctxt->_eip = addr.ea; in assign_eip() 793 .ea = ctxt->eip + cur_size }; in __do_insn_fetch_bytes() 894 addr.ea += 2; in read_descriptor() 1286 op->addr.mem.ea = modrm_ea; in decode_modrm() [all …]
|
/linux-4.4.14/arch/s390/include/asm/ |
D | etr.h | 17 unsigned int ea : 1; /* ETR alert control */ member
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | htab.c | 159 static void ps3_hpte_updateboltedpp(unsigned long newpp, unsigned long ea, in ps3_hpte_updateboltedpp() argument
|
/linux-4.4.14/arch/unicore32/include/asm/ |
D | assembler.h | 69 .else; .ifc \cond, ea
|
/linux-4.4.14/arch/m68k/math-emu/ |
D | fp_decode.h | 102 | decode destination format for fmove reg,ea 107 | decode source register for fmove reg,ea
|
D | fp_scan.S | 104 fp_fgen_ea: | source is <ea>
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | obd_class.h | 694 struct obdo *obdo, struct lov_stripe_md **ea, in obd_create() argument 702 rc = OBP(exp->exp_obd, create)(env, exp, obdo, ea, oti); in obd_create() 707 struct obdo *obdo, struct lov_stripe_md *ea, in obd_destroy() argument 716 rc = OBP(exp->exp_obd, destroy)(env, exp, obdo, ea, oti, md_exp); in obd_destroy() 1540 void *ea, int ealen, void *ea2, int ea2len, in md_setattr() argument 1548 rc = MDP(exp->exp_obd, setattr)(exp, op_data, ea, ealen, in md_setattr()
|
D | obd.h | 1026 struct obdo *oa, struct lov_stripe_md **ea, 1029 struct obdo *oa, struct lov_stripe_md *ea,
|
/linux-4.4.14/drivers/atm/ |
D | firestream.h | 457 struct FS_QENTRY *sa, *ea; member
|
D | firestream.c | 1429 txq->ea = p; in init_q()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | ea3250.dts | 19 compatible = "ea,ea3250", "nxp,lpc3250";
|
D | lpc4357-ea4357-devkit.dts | 23 compatible = "ea,lpc4357-developers-kit", "nxp,lpc4357", "nxp,lpc4350";
|
/linux-4.4.14/arch/x86/include/asm/ |
D | kvm_emulate.h | 240 ulong ea; member
|
/linux-4.4.14/Documentation/ |
D | oops-tracing.txt | 99 Code: f9 0f 8d f9 00 00 00 8d 42 0c e8 dd 26 11 c7 a1 60 ea 2b f9 8b 50 08 a1 100 64 ea 2b f9 8d 34 82 8b 1e 85 db 74 6d 8b 15 60 ea 2b f9 <8b> 43 04 39 42 54
|
/linux-4.4.14/drivers/mmc/card/ |
D | mmc_test.c | 1855 unsigned int dev_addr, cnt, rnd_addr, range1, range2, last_ea = 0, ea; in mmc_test_rnd_perf() local 1872 ea = mmc_test_rnd_num(range1); in mmc_test_rnd_perf() 1873 if (ea == last_ea) in mmc_test_rnd_perf() 1874 ea -= 1; in mmc_test_rnd_perf() 1875 last_ea = ea; in mmc_test_rnd_perf() 1876 dev_addr = rnd_addr + test->card->pref_erase * ea + in mmc_test_rnd_perf()
|
/linux-4.4.14/arch/s390/kernel/ |
D | time.c | 494 .p0 = 0, .p1 = 0, ._pad1 = 0, .ea = 0, in etr_reset() 1020 eacr.ea = eacr.p0 || eacr.p1; in etr_work_fn() 1021 if (!eacr.ea) { in etr_work_fn()
|
/linux-4.4.14/Documentation/s390/ |
D | s390dbf.txt | 409 00 00974733272:680099 2 - 02 0006ad7e 07 ea 4a 90 | .... 411 00 00974733272:682213 2 - 02 0006adf6 07 ea 4a 90 | .... 416 01 00974733272:682297 2 - 02 0006ad7e 07 ea 4a 90 | .... 418 01 00974733272:684388 2 - 00 0006adf6 07 ea 4a 90 | ....
|
/linux-4.4.14/drivers/staging/lustre/lustre/lov/ |
D | lov_obd.c | 968 struct lov_stripe_md **ea, struct obd_trans_info *oti) in lov_recreate() argument 983 lsm = *ea; in lov_recreate() 1022 struct obdo *src_oa, struct lov_stripe_md **ea, in lov_create() argument 1028 LASSERT(ea != NULL); in lov_create() 1046 rc = lov_recreate(exp, src_oa, ea, oti); in lov_create()
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | perf_event_intel_pt.c | 92 struct dev_ext_attribute *ea = in pt_cap_show() local 94 enum pt_capabilities cap = (long)ea->var; in pt_cap_show()
|
/linux-4.4.14/drivers/net/ethernet/apple/ |
D | bmac.c | 1185 bmac_get_station_address(struct net_device *dev, unsigned char *ea) in bmac_get_station_address() argument 1194 ea[2*i] = bitrev8(data & 0x0ff); in bmac_get_station_address() 1195 ea[2*i+1] = bitrev8((data >> 8) & 0x0ff); in bmac_get_station_address()
|
/linux-4.4.14/tools/lib/traceevent/ |
D | event-parse.c | 5402 struct event_format * const * ea = a; in events_id_cmp() local 5405 if ((*ea)->id < (*eb)->id) in events_id_cmp() 5408 if ((*ea)->id > (*eb)->id) in events_id_cmp() 5416 struct event_format * const * ea = a; in events_name_cmp() local 5420 res = strcmp((*ea)->name, (*eb)->name); in events_name_cmp() 5424 res = strcmp((*ea)->system, (*eb)->system); in events_name_cmp() 5433 struct event_format * const * ea = a; in events_system_cmp() local 5437 res = strcmp((*ea)->system, (*eb)->system); in events_system_cmp() 5441 res = strcmp((*ea)->name, (*eb)->name); in events_system_cmp()
|
D | parse-filter.c | 106 const struct filter_type *ea = a; in filter_cmp() local 109 if (ea->event_id < eb->event_id) in filter_cmp() 112 if (ea->event_id > eb->event_id) in filter_cmp()
|
/linux-4.4.14/drivers/tty/vt/ |
D | cp437.uni | 161 0x88 U+00ea
|
/linux-4.4.14/drivers/pci/ |
D | pci.c | 2396 int ea; in pci_ea_init() local 2402 ea = pci_find_capability(dev, PCI_CAP_ID_EA); in pci_ea_init() 2403 if (!ea) in pci_ea_init() 2407 pci_bus_read_config_byte(dev->bus, dev->devfn, ea + PCI_EA_NUM_ENT, in pci_ea_init() 2411 offset = ea + PCI_EA_FIRST_ENT; in pci_ea_init()
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | vendor-prefixes.txt | 70 ea Embedded Artists AB
|
/linux-4.4.14/fs/ntfs/ |
D | layout.h | 1089 } __attribute__ ((__packed__)) ea; member
|
/linux-4.4.14/drivers/bus/ |
D | arm-ccn.c | 226 struct dev_ext_attribute *ea = container_of(attr, in arm_ccn_pmu_format_show() local 229 return snprintf(buf, PAGE_SIZE, "%s\n", (char *)ea->var); in arm_ccn_pmu_format_show()
|
/linux-4.4.14/drivers/zorro/ |
D | zorro.ids | 163 07ea Progressive Peripherals & Systems
|
/linux-4.4.14/Documentation/filesystems/ |
D | coda.txt | 730 44..88.. ccrreeaattee 950 44..1144.. rreeaaddlliinnkk 1128 44..1199.. rreeaaddddiirr 1595 66.. IInniittiiaalliizzaattiioonn aanndd cclleeaannuupp
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
D | x86-opcode-map.txt | 293 ea: JMP-far Ap (i64) 583 ea: pminsw Pq,Qq | vpminsw Vx,Hx,Wx (66),(v1)
|
/linux-4.4.14/arch/x86/lib/ |
D | x86-opcode-map.txt | 293 ea: JMP-far Ap (i64) 583 ea: pminsw Pq,Qq | vpminsw Vx,Hx,Wx (66),(v1)
|
/linux-4.4.14/drivers/staging/lustre/lustre/lmv/ |
D | lmv_obd.c | 1988 void *ea, int ealen, void *ea2, int ea2len, in lmv_setattr() argument 2009 rc = md_setattr(tgt->ltd_exp, op_data, ea, ealen, ea2, in lmv_setattr()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 146 ea support = yes 148 Note that server ea support is required for supporting xattrs from the Linux
|