/linux-4.4.14/tools/build/tests/ |
D | run.sh | 4 make -C ex V=1 clean > ex.out 2>&1 5 make -C ex V=1 >> ex.out 2>&1 7 if [ ! -x ./ex/ex ]; then 12 make -C ex V=1 clean > /dev/null 2>&1 13 rm -f ex.out 17 make -C ex V=1 clean > ex.out 2>&1 20 make -rR -C ex V=1 ex.o >> ex.out 2>&1 21 make -rR -C ex V=1 ex.i >> ex.out 2>&1 22 make -rR -C ex V=1 ex.s >> ex.out 2>&1 24 if [ -x ./ex/ex ]; then [all …]
|
/linux-4.4.14/fs/ |
D | binfmt_aout.c | 205 struct exec ex; in load_aout_binary() local 211 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary() 212 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC && in load_aout_binary() 213 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) || in load_aout_binary() 214 N_TRSIZE(ex) || N_DRSIZE(ex) || in load_aout_binary() 215 i_size_read(file_inode(bprm->file)) < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { in load_aout_binary() 226 fd_offset = N_TXTOFF(ex); in load_aout_binary() 235 if (ex.a_data + ex.a_bss > rlim) in load_aout_binary() 245 SET_AOUT_PERSONALITY(bprm, ex); in load_aout_binary() 251 current->mm->end_code = ex.a_text + in load_aout_binary() [all …]
|
D | select.c | 338 #define FDS_EX(fds, n) (fds->ex + n) 432 inp = fds->in; outp = fds->out; exp = fds->ex; in do_select() 436 unsigned long in, out, ex, all_bits, bit = 1, mask, j; in do_select() local 439 in = *inp++; out = *outp++; ex = *exp++; in do_select() 440 all_bits = in | out | ex; in do_select() 473 if ((mask & POLLEX_SET) && (ex & bit)) { in do_select() 586 fds.ex = bits + 2*size; in core_sys_select() 593 (ret = get_fd_set(n, exp, fds.ex))) in core_sys_select()
|
D | compat.c | 1270 fds.ex = (unsigned long *) (bits + 2*size); in compat_core_sys_select() 1277 (ret = compat_get_fd_set(n, exp, fds.ex))) in compat_core_sys_select()
|
/linux-4.4.14/security/ |
D | device_cgroup.c | 69 struct dev_exception_item *ex, *tmp, *new; in dev_exceptions_copy() local 73 list_for_each_entry(ex, orig, list) { in dev_exceptions_copy() 74 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL); in dev_exceptions_copy() 83 list_for_each_entry_safe(ex, tmp, dest, list) { in dev_exceptions_copy() 84 list_del(&ex->list); in dev_exceptions_copy() 85 kfree(ex); in dev_exceptions_copy() 94 struct dev_exception_item *ex) in dev_exception_add() argument 100 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL); in dev_exception_add() 105 if (walk->type != ex->type) in dev_exception_add() 107 if (walk->major != ex->major) in dev_exception_add() [all …]
|
/linux-4.4.14/arch/x86/ia32/ |
D | ia32_aout.c | 264 struct exec ex; in load_aout_binary() local 267 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary() 268 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC && in load_aout_binary() 269 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) || in load_aout_binary() 270 N_TRSIZE(ex) || N_DRSIZE(ex) || in load_aout_binary() 272 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { in load_aout_binary() 276 fd_offset = N_TXTOFF(ex); in load_aout_binary() 285 if (ex.a_data + ex.a_bss > rlim) in load_aout_binary() 303 current->mm->end_code = ex.a_text + in load_aout_binary() 304 (current->mm->start_code = N_TXTADDR(ex)); in load_aout_binary() [all …]
|
/linux-4.4.14/tools/build/tests/ex/ |
D | Makefile | 6 ex: target 10 ex: ex-in.o libex-in.o target 13 ex.%: fixdep FORCE 16 ex-in.o: fixdep FORCE 17 make $(build)=ex 24 rm -f ex ex.i ex.s
|
D | Build | 1 ex-y += ex.o 2 ex-y += a.o 3 ex-y += b.o 4 ex-y += b.o 5 ex-y += empty/ 6 ex-y += empty2/ 7 ex-y += inc.o
|
/linux-4.4.14/fs/ext4/ |
D | extents.c | 183 struct ext4_extent *ex; in ext4_ext_find_goal() local 202 ex = path[depth].p_ext; in ext4_ext_find_goal() 203 if (ex) { in ext4_ext_find_goal() 204 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); in ext4_ext_find_goal() 205 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); in ext4_ext_find_goal() 229 struct ext4_extent *ex, int *err, unsigned int flags) in ext4_ext_new_meta_block() argument 233 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); in ext4_ext_new_meta_block() 530 struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); in __read_extent_tree_block() local 534 for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { in __read_extent_tree_block() 536 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in __read_extent_tree_block() [all …]
|
D | ext4_extents.h | 220 static inline ext4_fsblk_t ext4_ext_pblock(struct ext4_extent *ex) in ext4_ext_pblock() argument 224 block = le32_to_cpu(ex->ee_start_lo); in ext4_ext_pblock() 225 block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1; in ext4_ext_pblock() 247 static inline void ext4_ext_store_pblock(struct ext4_extent *ex, in ext4_ext_store_pblock() argument 250 ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); in ext4_ext_store_pblock() 251 ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & in ext4_ext_store_pblock()
|
D | mballoc.c | 1504 int needed, struct ext4_free_extent *ex) in mb_find_extent() argument 1511 BUG_ON(ex == NULL); in mb_find_extent() 1517 ex->fe_len = 0; in mb_find_extent() 1518 ex->fe_start = 0; in mb_find_extent() 1519 ex->fe_group = 0; in mb_find_extent() 1527 ex->fe_len = 1 << order; in mb_find_extent() 1528 ex->fe_start = block << order; in mb_find_extent() 1529 ex->fe_group = e4b->bd_group; in mb_find_extent() 1532 next = next - ex->fe_start; in mb_find_extent() 1533 ex->fe_len -= next; in mb_find_extent() [all …]
|
D | crypto.c | 387 int ext4_encrypted_zeroout(struct inode *inode, struct ext4_extent *ex) in ext4_encrypted_zeroout() argument 392 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in ext4_encrypted_zeroout() 393 ext4_fsblk_t pblk = ext4_ext_pblock(ex); in ext4_encrypted_zeroout() 394 unsigned int len = ext4_ext_get_actual_len(ex); in ext4_encrypted_zeroout()
|
D | migrate.c | 620 struct ext4_extent *ex; in ext4_ind_migrate() local 652 ex = EXT_FIRST_EXTENT(eh); in ext4_ind_migrate() 661 len = le16_to_cpu(ex->ee_len); in ext4_ind_migrate() 662 blk = ext4_ext_pblock(ex); in ext4_ind_migrate() 663 start = le32_to_cpu(ex->ee_block); in ext4_ind_migrate()
|
D | move_extent.c | 620 struct ext4_extent *ex; in ext4_move_extents() local 629 ex = path[path->p_depth].p_ext; in ext4_move_extents() 631 cur_blk = le32_to_cpu(ex->ee_block); in ext4_move_extents() 632 cur_len = ext4_ext_get_actual_len(ex); in ext4_move_extents() 654 unwritten = ext4_ext_is_unwritten(ex); in ext4_move_extents()
|
D | extents_status.c | 466 struct ext4_extent *ex; in ext4_es_insert_extent_ext_check() local 477 ex = path[depth].p_ext; in ext4_es_insert_extent_ext_check() 479 if (ex) { in ext4_es_insert_extent_ext_check() 481 ee_block = le32_to_cpu(ex->ee_block); in ext4_es_insert_extent_ext_check() 482 ee_start = ext4_ext_pblock(ex); in ext4_es_insert_extent_ext_check() 483 ee_len = ext4_ext_get_actual_len(ex); in ext4_es_insert_extent_ext_check() 485 ee_status = ext4_ext_is_unwritten(ex) ? 1 : 0; in ext4_es_insert_extent_ext_check()
|
D | ext4.h | 2269 int ext4_encrypted_zeroout(struct inode *inode, struct ext4_extent *ex);
|
/linux-4.4.14/fs/ocfs2/ |
D | dlmglue.h | 121 int ex, 126 int ex, 137 int ex); 139 int ex); 141 int ex); 147 int ocfs2_nfs_sync_lock(struct ocfs2_super *osb, int ex); 148 void ocfs2_nfs_sync_unlock(struct ocfs2_super *osb, int ex); 149 int ocfs2_dentry_lock(struct dentry *dentry, int ex); 150 void ocfs2_dentry_unlock(struct dentry *dentry, int ex); 151 int ocfs2_file_lock(struct file *file, int ex, int trylock); [all …]
|
D | dlmglue.c | 1611 int ex, in ocfs2_create_new_lock() argument 1614 int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; in ocfs2_create_new_lock() 1876 int ocfs2_file_lock(struct file *file, int ex, int trylock) in ocfs2_file_lock() argument 1878 int ret, level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; in ocfs2_file_lock() 1968 lockres->l_name, ex, trylock, ret); in ocfs2_file_lock() 2320 int ex, in ocfs2_inode_lock_full_nested() argument 2334 ex ? "EXMODE" : "PRMODE"); in ocfs2_inode_lock_full_nested() 2341 if (ex) in ocfs2_inode_lock_full_nested() 2353 level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; in ocfs2_inode_lock_full_nested() 2417 ocfs2_inode_unlock(inode, ex); in ocfs2_inode_lock_full_nested() [all …]
|
D | quota_global.c | 296 int ocfs2_lock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex) in ocfs2_lock_global_qf() argument 301 status = ocfs2_inode_lock(oinfo->dqi_gqinode, &bh, ex); in ocfs2_lock_global_qf() 310 if (ex) { in ocfs2_lock_global_qf() 319 void ocfs2_unlock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex) in ocfs2_unlock_global_qf() argument 321 if (ex) { in ocfs2_unlock_global_qf() 327 ocfs2_inode_unlock(oinfo->dqi_gqinode, ex); in ocfs2_unlock_global_qf() 781 int ex = 0; in ocfs2_acquire_dquot() local 816 ex = 1; in ocfs2_acquire_dquot() 835 status = ocfs2_qinfo_lock(info, ex); in ocfs2_acquire_dquot() 839 if (ex && info_dirty(sb_dqinfo(sb, type))) { in ocfs2_acquire_dquot() [all …]
|
D | quota.h | 110 int ocfs2_lock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex); 111 void ocfs2_unlock_global_qf(struct ocfs2_mem_dqinfo *oinfo, int ex);
|
/linux-4.4.14/tools/testing/selftests/x86/ |
D | test_FISTTP.c | 22 int ex; in test() local 38 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 39 if (ex != 0) { in test() 58 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 59 if (ex != FE_INEXACT) { in test() 81 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 82 if (ex != FE_INEXACT) { in test() 102 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 103 if (ex != FE_INEXACT) { in test()
|
/linux-4.4.14/tools/build/Documentation/ |
D | Build.txt | 51 ex/a.c 58 Out of which you build the 'ex' binary ' and the 'libex.a' library: 60 'ex' - consists of 'a.o', 'b.o' and libex.a 63 The build framework does not create the 'ex' and 'libex.a' binaries for you, it 68 ex/Build: 69 ex-y += a.o 70 ex-y += b.o 71 ex-y += b.o # duplicates in the lists are allowed 77 ex/arch/Build: 83 $ make -f tools/build/Makefile.build dir=. obj=ex [all …]
|
/linux-4.4.14/drivers/net/team/ |
D | team_mode_loadbalance.c | 64 struct lb_priv_ex *ex; /* priv extension */ member 83 (lb_priv)->ex->tx_hash_to_port_mapping[hash].port 86 (lb_priv)->ex->tx_hash_to_port_mapping[hash].opt_inst_info 98 pm = &lb_priv->ex->tx_hash_to_port_mapping[i]; in lb_tx_hash_to_port_mapping_null_port() 233 if (!lb_priv->ex->orig_fprog) { in lb_bpf_func_get() 238 ctx->data.bin_val.len = lb_priv->ex->orig_fprog->len * in lb_bpf_func_get() 240 ctx->data.bin_val.ptr = lb_priv->ex->orig_fprog->filter; in lb_bpf_func_get() 291 if (lb_priv->ex->orig_fprog) { in lb_bpf_func_set() 293 __fprog_destroy(lb_priv->ex->orig_fprog); in lb_bpf_func_set() 299 lb_priv->ex->orig_fprog = fprog; in lb_bpf_func_set() [all …]
|
/linux-4.4.14/arch/cris/boot/tools/ |
D | build.c | 112 struct exec *ex = (struct exec *)buf; in main() local 236 if (N_MAGIC(*ex) == ZMAGIC) { in main() 239 } else if (N_MAGIC(*ex) != QMAGIC) in main() 242 (ex->a_text+ex->a_data+ex->a_bss)/1024, in main() 243 ex->a_text /1024, in main() 244 ex->a_data /1024, in main() 245 ex->a_bss /1024); in main() 246 sz = N_SYMOFF(*ex) - GCC_HEADER + 4; in main()
|
/linux-4.4.14/drivers/scsi/libsas/ |
D | sas_expander.c | 206 struct expander_device *ex = &dev->ex_dev; in sas_set_ex_phy() local 207 struct ex_phy *phy = &ex->ex_phy[phy_id]; in sas_set_ex_phy() 394 struct expander_device *ex = &dev->ex_dev; in sas_ex_phy_discover() local 411 if (0 <= single && single < ex->num_phys) { in sas_ex_phy_discover() 416 for (i = 0; i < ex->num_phys; i++) { in sas_ex_phy_discover() 431 struct expander_device *ex = &dev->ex_dev; in sas_expander_discover() local 434 ex->ex_phy = kzalloc(sizeof(*ex->ex_phy)*ex->num_phys, GFP_KERNEL); in sas_expander_discover() 435 if (!ex->ex_phy) in sas_expander_discover() 444 kfree(ex->ex_phy); in sas_expander_discover() 445 ex->ex_phy = NULL; in sas_expander_discover() [all …]
|
D | sas_internal.h | 168 struct expander_device *ex = &dev->ex_dev; in sas_add_parent_port() local 169 struct ex_phy *ex_phy = &ex->ex_phy[phy_id]; in sas_add_parent_port() 171 if (!ex->parent_port) { in sas_add_parent_port() 172 ex->parent_port = sas_port_alloc(&dev->rphy->dev, phy_id); in sas_add_parent_port() 174 BUG_ON(!ex->parent_port); in sas_add_parent_port() 175 BUG_ON(sas_port_add(ex->parent_port)); in sas_add_parent_port() 176 sas_port_mark_backlink(ex->parent_port); in sas_add_parent_port() 178 sas_port_add_phy(ex->parent_port, ex_phy->phy); in sas_add_parent_port()
|
/linux-4.4.14/arch/mips/include/asm/ |
D | elf.h | 296 #define SET_PERSONALITY2(ex, state) \ argument 327 #define __SET_PERSONALITY32_O32(ex, state) \ argument 339 #define __SET_PERSONALITY32_O32(ex, state) \ argument 344 #define __SET_PERSONALITY32(ex, state) \ argument 346 if ((((ex).e_flags & EF_MIPS_ABI2) != 0) && \ 347 ((ex).e_flags & EF_MIPS_ABI) == 0) \ 350 __SET_PERSONALITY32_O32(ex, state); \ 353 #define __SET_PERSONALITY32(ex, state) do { } while (0) argument 356 #define SET_PERSONALITY2(ex, state) \ argument 365 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ [all …]
|
/linux-4.4.14/include/linux/ |
D | elf.h | 11 # define elf_read_implies_exec(ex, have_pt_gnu_stack) 0 argument 14 #define SET_PERSONALITY(ex) \ argument 19 #define SET_PERSONALITY2(ex, state) \ argument 20 SET_PERSONALITY(ex)
|
D | poll.h | 112 unsigned long *in, *out, *ex; member
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | elf.h | 88 # define SET_PERSONALITY(ex) \ argument 90 if (((ex).e_flags & 0x3) == 2) \ 94 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ 109 # define elf_read_implies_exec(ex, exec_stk) (is_32bit_task() ? \ argument 112 # define elf_read_implies_exec(ex, exec_stk) (exec_stk == EXSTACK_DEFAULT) argument
|
/linux-4.4.14/fs/hpfs/ |
D | ea.c | 18 char ex[4 + 255 + 1 + 8]; in hpfs_ea_ext_remove() local 19 struct extended_attribute *ea = (struct extended_attribute *)ex; in hpfs_ea_ext_remove() 25 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return; 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() 79 char ex[4 + 255 + 1 + 8]; in hpfs_read_ea() local 97 ea = (struct extended_attribute *)ex; in hpfs_read_ea() 103 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return -EIO; in hpfs_read_ea() 104 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 1 + (ea_indirect(ea) ? 8 : 0), ex + 4)) in hpfs_read_ea() 154 char ex[4 + 255 + 1 + 8]; in hpfs_get_ea() local 155 ea = (struct extended_attribute *)ex; in hpfs_get_ea() [all …]
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | obs600.dts | 56 compatible = "ibm,uic-405ex", "ibm,uic"; 66 compatible = "ibm,uic-405ex","ibm,uic"; 78 compatible = "ibm,uic-405ex","ibm,uic"; 99 compatible = "ibm,plb-405ex", "ibm,plb4"; 106 compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; 121 compatible = "ibm,mcmal-405ex", "ibm,mcmal2"; 139 compatible = "ibm,opb-405ex", "ibm,opb"; 149 compatible = "ibm,ebc-405ex", "ibm,ebc"; 218 compatible = "ibm,iic-405ex", "ibm,iic"; 232 compatible = "ibm,iic-405ex", "ibm,iic"; [all …]
|
D | canyonlands.dts | 53 compatible = "ibm,uic-460ex","ibm,uic"; 63 compatible = "ibm,uic-460ex","ibm,uic"; 75 compatible = "ibm,uic-460ex","ibm,uic"; 87 compatible = "ibm,uic-460ex","ibm,uic"; 99 compatible = "ibm,sdr-460ex"; 104 compatible = "ibm,cpr-460ex"; 118 compatible = "ibm,l2-cache-460ex", "ibm,l2-cache"; 128 compatible = "ibm,plb-460ex", "ibm,plb4"; 135 compatible = "ibm,sdram-460ex", "ibm,sdram-405gp"; 152 compatible = "ibm,mcmal-460ex", "ibm,mcmal2"; [all …]
|
D | makalu.dts | 52 compatible = "ibm,uic-405ex", "ibm,uic"; 62 compatible = "ibm,uic-405ex","ibm,uic"; 74 compatible = "ibm,uic-405ex","ibm,uic"; 86 compatible = "ibm,plb-405ex", "ibm,plb4"; 93 compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; 101 compatible = "ibm,mcmal-405ex", "ibm,mcmal2"; 119 compatible = "ibm,opb-405ex", "ibm,opb"; 129 compatible = "ibm,ebc-405ex", "ibm,ebc"; 190 compatible = "ibm,iic-405ex", "ibm,iic"; 197 compatible = "ibm,iic-405ex", "ibm,iic"; [all …]
|
D | kilauea.dts | 52 compatible = "ibm,uic-405ex", "ibm,uic"; 62 compatible = "ibm,uic-405ex","ibm,uic"; 74 compatible = "ibm,uic-405ex","ibm,uic"; 95 compatible = "ibm,plb-405ex", "ibm,plb4"; 102 compatible = "ibm,sdram-405ex", "ibm,sdram-4xx-ddr2"; 117 compatible = "ibm,mcmal-405ex", "ibm,mcmal2"; 135 compatible = "ibm,opb-405ex", "ibm,opb"; 145 compatible = "ibm,ebc-405ex", "ibm,ebc"; 233 compatible = "ibm,iic-405ex", "ibm,iic"; 252 compatible = "ibm,iic-405ex", "ibm,iic"; [all …]
|
D | glacier.dts | 497 compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex"; 539 compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
|
D | haleakala.dts | 245 compatible = "ibm,plb-pciex-405ex", "ibm,plb-pciex";
|
/linux-4.4.14/arch/arm/include/asm/ |
D | elf.h | 106 #define elf_read_implies_exec(ex,stk) arm_elf_read_implies_exec(&(ex), stk) argument 128 #define SET_PERSONALITY(ex) elf_set_personality(&(ex)) argument
|
/linux-4.4.14/arch/mips/boot/ |
D | elf2ecoff.c | 268 Elf32_Ehdr ex; in main() local 305 i = read(infile, &ex, sizeof ex); in main() 306 if (i != sizeof ex) { in main() 313 if (ex.e_ident[EI_DATA] == ELFDATA2MSB) in main() 324 convert_elf_hdr(&ex); in main() 327 ph = (Elf32_Phdr *) saveRead(infile, ex.e_phoff, in main() 328 ex.e_phnum * sizeof(Elf32_Phdr), in main() 331 convert_elf_phdrs(ph, ex.e_phnum); in main() 333 sh = (Elf32_Shdr *) saveRead(infile, ex.e_shoff, in main() 334 ex.e_shnum * sizeof(Elf32_Shdr), in main() [all …]
|
/linux-4.4.14/include/math-emu/ |
D | soft-fp.h | 123 #define FP_SET_EXCEPTION(ex) \ argument 124 _fex |= (ex) 126 #define FP_UNSET_EXCEPTION(ex) \ argument 127 _fex &= ~(ex)
|
/linux-4.4.14/arch/s390/lib/ |
D | mem.S | 40 ex %r4,0(%r3) 57 ex %r4,0(%r3) 79 ex %r4,0(%r5)
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | elf.h | 117 #define elf_read_implies_exec(ex,stk) (stk != EXSTACK_DISABLE_X) argument 137 #define SET_PERSONALITY(ex) clear_thread_flag(TIF_32BIT); argument 180 #define COMPAT_SET_PERSONALITY(ex) set_thread_flag(TIF_32BIT); argument
|
/linux-4.4.14/arch/tile/include/asm/ |
D | elf.h | 125 #define SET_PERSONALITY(ex) do { } while (0) argument 164 #define SET_PERSONALITY(ex) \ argument 169 #define COMPAT_SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/arch/s390/include/asm/ |
D | elf.h | 184 #define SET_PERSONALITY(ex) \ argument 192 #define SET_PERSONALITY(ex) \ argument 197 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) { \
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | uar.c | 79 goto ex; in mlx5_cmd_alloc_uar() 83 goto ex; in mlx5_cmd_alloc_uar() 88 ex: in mlx5_cmd_alloc_uar() 105 goto ex; in mlx5_cmd_free_uar() 110 ex: in mlx5_cmd_free_uar()
|
D | vport.c | 254 goto ex; in mlx5_query_hca_vport_context() 263 goto ex; in mlx5_query_hca_vport_context() 266 goto ex; in mlx5_query_hca_vport_context() 303 ex: in mlx5_query_hca_vport_context()
|
D | eq.c | 96 goto ex; in mlx5_cmd_destroy_eq() 101 ex: in mlx5_cmd_destroy_eq()
|
/linux-4.4.14/arch/unicore32/include/asm/ |
D | elf.h | 84 #define SET_PERSONALITY(ex) elf_set_personality(&(ex)) argument
|
/linux-4.4.14/drivers/infiniband/hw/qib/ |
D | qib_uc.c | 119 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_uc_req() 148 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in qib_make_uc_req() 177 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_uc_req() 202 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_uc_req() 381 wc.ex.imm_data = ohdr->u.imm_data; in qib_uc_rcv() 387 wc.ex.imm_data = 0; in qib_uc_rcv() 456 wc.ex.imm_data = ohdr->u.rc.imm_data; in qib_uc_rcv() 471 wc.ex.imm_data = ohdr->u.imm_data; in qib_uc_rcv()
|
D | qib_ud.c | 135 wc.ex.imm_data = swqe->wr.ex.imm_data; in qib_ud_loopback() 343 ohdr->u.ud.imm_data = wqe->wr.ex.imm_data; in qib_make_ud_req() 516 wc.ex.imm_data = ohdr->u.ud.imm_data; in qib_ud_rcv() 520 wc.ex.imm_data = 0; in qib_ud_rcv()
|
D | qib_ruc.c | 435 wc.ex.imm_data = wqe->wr.ex.imm_data; in qib_ruc_loopback() 449 wc.ex.imm_data = wqe->wr.ex.imm_data; in qib_ruc_loopback()
|
D | qib_cq.c | 89 wc->uqueue[head].ex.imm_data = in qib_cq_enter() 90 (__u32 __force)entry->ex.imm_data; in qib_cq_enter()
|
D | qib_rc.c | 355 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req() 396 wqe->rdma_wr.wr.ex.imm_data; in qib_make_rc_req() 538 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req() 579 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req() 2007 wc.ex.imm_data = ohdr->u.imm_data; in qib_rc_rcv() 2015 wc.ex.imm_data = 0; in qib_rc_rcv() 2093 wc.ex.imm_data = ohdr->u.rc.imm_data; in qib_rc_rcv()
|
/linux-4.4.14/drivers/staging/rdma/ipath/ |
D | ipath_uc.c | 116 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_uc_req() 145 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in ipath_make_uc_req() 174 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_uc_req() 199 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_uc_req() 382 wc.ex.imm_data = *(__be32 *) data; in ipath_uc_rcv() 386 wc.ex.imm_data = ohdr->u.imm_data; in ipath_uc_rcv() 486 wc.ex.imm_data = *(__be32 *) data; in ipath_uc_rcv() 490 wc.ex.imm_data = ohdr->u.imm_data; in ipath_uc_rcv()
|
D | ipath_ud.c | 97 wc.ex.imm_data = swqe->wr.ex.imm_data; in ipath_ud_loopback() 344 ohdr->u.ud.imm_data = wqe->ud_wr.wr.ex.imm_data; in ipath_make_ud_req() 482 wc.ex.imm_data = *(__be32 *) data; in ipath_ud_rcv() 485 wc.ex.imm_data = ohdr->u.ud.imm_data; in ipath_ud_rcv() 489 wc.ex.imm_data = 0; in ipath_ud_rcv()
|
D | ipath_ruc.c | 334 wc.ex.imm_data = wqe->wr.ex.imm_data; in ipath_ruc_loopback() 345 wc.ex.imm_data = wqe->wr.ex.imm_data; in ipath_ruc_loopback()
|
D | ipath_cq.c | 86 wc->uqueue[head].ex.imm_data = (__u32 __force) entry->ex.imm_data; in ipath_cq_enter()
|
D | ipath_rc.c | 331 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_rc_req() 371 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in ipath_make_rc_req() 515 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_rc_req() 551 ohdr->u.imm_data = wqe->wr.ex.imm_data; in ipath_make_rc_req() 1706 wc.ex.imm_data = *(__be32 *) data; in ipath_rc_rcv() 1710 wc.ex.imm_data = ohdr->u.imm_data; in ipath_rc_rcv()
|
/linux-4.4.14/drivers/net/ethernet/nvidia/ |
D | forcedeth.c | 368 struct ring_desc_ex *ex; member 1030 if (np->rx_ring.ex) in free_rings() 1032 np->rx_ring.ex, np->ring_addr); in free_rings() 1851 less_rx = np->get_rx.ex; in nv_alloc_rx_optimized() 1852 if (less_rx-- == np->first_rx.ex) in nv_alloc_rx_optimized() 1853 less_rx = np->last_rx.ex; in nv_alloc_rx_optimized() 1855 while (np->put_rx.ex != less_rx) { in nv_alloc_rx_optimized() 1869 np->put_rx.ex->bufhigh = cpu_to_le32(dma_high(np->put_rx_ctx->dma)); in nv_alloc_rx_optimized() 1870 np->put_rx.ex->buflow = cpu_to_le32(dma_low(np->put_rx_ctx->dma)); in nv_alloc_rx_optimized() 1872 np->put_rx.ex->flaglen = cpu_to_le32(np->rx_buf_sz | NV_RX2_AVAIL); in nv_alloc_rx_optimized() [all …]
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | uc.c | 137 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_uc_req() 166 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in hfi1_make_uc_req() 196 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_uc_req() 222 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_uc_req() 422 wc.ex.imm_data = ohdr->u.imm_data; in hfi1_uc_rcv() 427 wc.ex.imm_data = 0; in hfi1_uc_rcv() 506 wc.ex.imm_data = ohdr->u.rc.imm_data; in hfi1_uc_rcv() 521 wc.ex.imm_data = ohdr->u.imm_data; in hfi1_uc_rcv()
|
D | ud.c | 157 wc.ex.imm_data = swqe->wr.ex.imm_data; in ud_loopback() 373 ohdr->u.ud.imm_data = wqe->wr.ex.imm_data; in hfi1_make_ud_req() 794 wc.ex.imm_data = ohdr->u.ud.imm_data; in hfi1_ud_rcv() 798 wc.ex.imm_data = 0; in hfi1_ud_rcv()
|
D | ruc.c | 457 wc.ex.imm_data = wqe->wr.ex.imm_data; in ruc_loopback() 471 wc.ex.imm_data = wqe->wr.ex.imm_data; in ruc_loopback()
|
D | cq.c | 105 wc->uqueue[head].ex.imm_data = in hfi1_cq_enter() 106 (__u32 __force)entry->ex.imm_data; in hfi1_cq_enter()
|
D | rc.c | 385 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_rc_req() 425 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in hfi1_make_rc_req() 567 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_rc_req() 609 ohdr->u.imm_data = wqe->wr.ex.imm_data; in hfi1_make_rc_req() 2087 wc.ex.imm_data = ohdr->u.imm_data; in hfi1_rc_rcv() 2094 wc.ex.imm_data = 0; in hfi1_rc_rcv() 2181 wc.ex.imm_data = ohdr->u.rc.imm_data; in hfi1_rc_rcv()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | elf.h | 194 #define COMPAT_SET_PERSONALITY(ex) \ argument 195 set_personality_ia32((ex).e_machine == EM_X86_64) 268 #define SET_PERSONALITY(ex) set_personality_64bit() argument 274 #define elf_read_implies_exec(ex, executable_stack) \ argument
|
/linux-4.4.14/Documentation/ |
D | pnp.txt | 175 ex: 186 ex: 191 ex: 200 ex: 207 ex: 215 ex: 228 ex:
|
D | kprobes.txt | 460 If the functions find an incorrect probe (ex. an unregistered probe), 491 If the functions find some incorrect probes (ex. unregistered
|
/linux-4.4.14/arch/sparc/include/asm/ |
D | elf_64.h | 202 #define SET_PERSONALITY(ex) \ argument 203 do { if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
|
/linux-4.4.14/arch/ia64/include/asm/ |
D | elf.h | 204 #define elf_read_implies_exec(ex, executable_stack) \ argument 205 ((executable_stack!=EXSTACK_DISABLE_X) && ((ex).e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK) != 0)
|
D | pal.h | 443 ex : 1, /* MC is expected */ member 695 #define pmci_proc_machine_check_expected pme_processor.ex
|
/linux-4.4.14/arch/sh/kernel/cpu/sh2/ |
D | Makefile | 5 obj-y := ex.o probe.o entry.o
|
/linux-4.4.14/arch/microblaze/include/asm/ |
D | elf.h | 27 #define SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/arch/mips/loongson64/loongson-3/ |
D | Makefile | 4 obj-y += irq.o cop2-ex.o platform.o
|
/linux-4.4.14/arch/sh/kernel/cpu/sh5/ |
D | fpu.c | 104 asmlinkage void do_fpu_error(unsigned long ex, struct pt_regs *regs) in do_fpu_error() argument
|
/linux-4.4.14/include/uapi/linux/ |
D | dlm_plock.h | 31 __u8 ex; member
|
D | kvm.h | 230 } ex; member
|
/linux-4.4.14/arch/mips/netlogic/xlp/ |
D | Makefile | 1 obj-y += setup.o nlm_hal.o cop2-ex.o dt.o
|
/linux-4.4.14/arch/avr32/kernel/ |
D | vmlinux.lds.S | 50 *(.ex.text)
|
D | entry-avr32b.S | 38 .section .ex.text,"ax",@progbits
|
/linux-4.4.14/arch/sh/kernel/cpu/sh2a/ |
D | Makefile | 7 common-y += ex.o entry.o
|
/linux-4.4.14/arch/sh/kernel/ |
D | hw_breakpoint.c | 373 unsigned long ex = lookup_exception_vector(); in BUILD_TRAP_HANDLER() local 376 notify_die(DIE_BREAKPOINT, "breakpoint", regs, 0, ex, SIGTRAP); in BUILD_TRAP_HANDLER()
|
D | traps_32.c | 729 long ex; in do_exception_error() local 731 ex = lookup_exception_vector(); in do_exception_error() 732 die_if_kernel("exception", current_pt_regs(), ex); in do_exception_error()
|
D | traps_64.c | 762 asmlinkage void do_exception_error(unsigned long ex, struct pt_regs *regs) in do_exception_error() argument 764 die_if_kernel("exception", regs, ex); in do_exception_error()
|
/linux-4.4.14/arch/sh/kernel/cpu/sh4/ |
D | Makefile | 6 common-y += $(addprefix ../sh3/, entry.o ex.o)
|
/linux-4.4.14/arch/hexagon/kernel/ |
D | traps.c | 54 static const char *ex_name(int ex) in ex_name() argument 56 switch (ex) { in ex_name()
|
/linux-4.4.14/drivers/infiniband/hw/mlx5/ |
D | cq.c | 208 wc->ex.imm_data = cqe->imm_inval_pkey; in handle_responder() 217 wc->ex.imm_data = cqe->imm_inval_pkey; in handle_responder() 222 wc->ex.invalidate_rkey = be32_to_cpu(cqe->imm_inval_pkey); in handle_responder() 1007 goto ex; in resize_kernel() 1013 ex: in resize_kernel() 1121 goto ex; in mlx5_ib_resize_cq() 1188 ex: in mlx5_ib_resize_cq()
|
D | qp.c | 2051 return wr->ex.imm_data; in send_ieth() 2054 return cpu_to_be32(wr->ex.invalidate_rkey); in send_ieth() 2665 ctrl->imm = cpu_to_be32(wr->ex.invalidate_rkey); in mlx5_ib_post_send()
|
/linux-4.4.14/arch/sh/kernel/cpu/sh3/ |
D | Makefile | 5 obj-y := ex.o probe.o entry.o setup-sh3.o
|
/linux-4.4.14/Documentation/sound/oss/ |
D | PSS-updates | 31 assigned to the CDROM port when you loaded your pss sound driver. (ex. 76 # Should be specified in an rc file (ex. Slackware uses /etc/rc.d/rc.modules). 83 # Should be specified in an rc file (ex. Slackware uses /etc/rc.d/rc.modules).
|
/linux-4.4.14/Documentation/devicetree/bindings/interrupt-controller/ |
D | renesas,irqc.txt | 13 - "renesas,intc-ex-r8a7795" (R-Car H3)
|
/linux-4.4.14/arch/cris/include/uapi/asm/ |
D | elf_v32.h | 34 #define elf_read_implies_exec_binary(ex, have_pt_gnu_stack) (!(have_pt_gnu_stack)) argument
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-coresight-devices-etb10 | 7 ex: echo 1 > /sys/bus/coresight/devices/20010000.etb/enable_sink
|
/linux-4.4.14/fs/dlm/ |
D | plock.c | 125 op->info.ex = (fl->fl_type == F_WRLCK); in dlm_posix_lock() 337 op->info.ex = (fl->fl_type == F_WRLCK); in dlm_posix_get() 368 fl->fl_type = (op->info.ex) ? F_WRLCK : F_RDLCK; in dlm_posix_get()
|
/linux-4.4.14/Documentation/cpu-freq/ |
D | core.txt | 33 policy changes (ex. thermal modules like ACPI) or of all 34 frequency changes (ex. timing code) or even need to force certain
|
/linux-4.4.14/arch/parisc/kernel/ |
D | binfmt_elf32.c | 89 #define SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/Documentation/devicetree/bindings/reset/ |
D | st,sti-powerdown.txt | 20 ex: "st,stih415-powerdown", "st,stih416-powerdown"
|
/linux-4.4.14/arch/xtensa/include/asm/ |
D | elf.h | 193 #define SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/arch/cris/arch-v32/mm/ |
D | mmu.S | 39 .macro MMU_BUS_FAULT_HANDLER handler, mmu, we, ex 48 orq \ex << 1, $r13 ; execute?
|
D | init.c | 52 REG_STATE(mmu, rw_mm_cfg, ex, on) | in cris_mmu_init()
|
/linux-4.4.14/drivers/infiniband/hw/cxgb3/ |
D | iwch_cq.c | 100 wc->ex.invalidate_rkey = CQE_WRID_STAG(cqe); in iwch_poll_cq_one()
|
D | iwch_qp.c | 61 wqe->send.rem_stag = cpu_to_be32(wr->ex.invalidate_rkey); in build_rdma_send() 103 wqe->write.sgl[0].stag = wr->ex.imm_data; in build_rdma_write() 195 wqe->local_inv.stag = cpu_to_be32(wr->ex.invalidate_rkey); in build_inv_stag()
|
/linux-4.4.14/arch/mips/kernel/ |
D | r4k_fpu.S | 30 .ex\@: \insn \reg, \src 33 PTR .ex\@, fault
|
/linux-4.4.14/arch/x86/um/asm/ |
D | elf.h | 216 #define SET_PERSONALITY(ex) do ; while(0) argument
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | elf.h | 249 #define SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/arch/cris/arch-v32/kernel/ |
D | head.S | 92 | REG_STATE(mmu, rw_mm_cfg, ex, on) \ 113 | REG_STATE(mmu, rw_mm_cfg, ex, on) \
|
/linux-4.4.14/include/trace/events/ |
D | ext4.h | 2055 TP_PROTO(struct inode *inode, struct ext4_extent *ex, 2059 TP_ARGS(inode, ex, from, to, partial_cluster), 2078 __entry->ee_pblk = ext4_ext_pblock(ex); 2079 __entry->ee_lblk = le32_to_cpu(ex->ee_block); 2080 __entry->ee_len = ext4_ext_get_actual_len(ex); 2097 struct ext4_extent *ex, 2100 TP_ARGS(inode, start, ex, partial_cluster), 2117 __entry->ee_lblk = le32_to_cpu(ex->ee_block); 2118 __entry->ee_pblk = ext4_ext_pblock(ex); 2119 __entry->ee_len = ext4_ext_get_actual_len(ex);
|
/linux-4.4.14/drivers/staging/rdma/ehca/ |
D | ehca_reqs.c | 214 wqe_p->immediate_data = be32_to_cpu(send_wr->ex.imm_data); in ehca_write_swqe() 789 wc->ex.imm_data = cpu_to_be32(cqe->immediate_data); in ehca_poll_cq_one() 852 wc->ex.imm_data = wqe->immediate_data; in generate_flush_cqes()
|
/linux-4.4.14/arch/sh/include/asm/ |
D | elf.h | 186 #define SET_PERSONALITY(ex) \ argument
|
/linux-4.4.14/include/uapi/rdma/ |
D | ib_user_verbs.h | 409 } ex; member 690 } ex; member
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | hypercalls.txt | 77 kernel mode for an event to occur (ex: a spinlock to become available) can
|
D | api.txt | 3108 } ex;
|
/linux-4.4.14/drivers/infiniband/hw/mlx4/ |
D | cq.c | 834 wc->ex.imm_data = cqe->immed_rss_invalid; in mlx4_ib_poll_one() 839 wc->ex.invalidate_rkey = be32_to_cpu(cqe->immed_rss_invalid); in mlx4_ib_poll_one() 848 wc->ex.imm_data = cqe->immed_rss_invalid; in mlx4_ib_poll_one()
|
D | qp.c | 2375 sqp->ud_header.immediate_data = wr->wr.ex.imm_data; in build_mlx_header() 2731 return wr->ex.imm_data; in send_ieth() 2734 return cpu_to_be32(wr->ex.invalidate_rkey); in send_ieth() 2857 set_local_inv_seg(wqe, wr->ex.invalidate_rkey); in mlx4_ib_post_send()
|
/linux-4.4.14/drivers/media/pci/solo6x10/ |
D | solo6x10-v4l2.c | 72 int sx, int sy, int ex, int ey, int scale) in solo_win_setup() argument 81 SOLO_VI_WIN_EX(ex) | in solo_win_setup()
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | MISC | 192 ex. files
|
/linux-4.4.14/Documentation/dvb/ |
D | bt8xx.txt | 56 In your logs see f. ex.: dst_get_device_id: Recognize [DSTMCI].
|
/linux-4.4.14/Documentation/filesystems/ |
D | befs.txt | 89 ex)
|
D | proc.txt | 437 VmFlags: rd ex mr mw me dw 470 ex - executable
|
D | coda.txt | 1355 44..2266.. ooddyy__eexxppaanndd
|
/linux-4.4.14/net/sunrpc/xprtrdma/ |
D | svc_rdma_recvfrom.c | 321 read_wr.wr.ex.invalidate_rkey = ctxt->frmr->mr->lkey; in rdma_read_chunk_frmr() 330 inv_wr.ex.invalidate_rkey = frmr->mr->lkey; in rdma_read_chunk_frmr()
|
D | frwr_ops.c | 437 invalidate_wr.ex.invalidate_rkey = frmr->fr_mr->rkey; in frwr_op_unmap()
|
/linux-4.4.14/Documentation/extcon/ |
D | porting-android-switch-class | 42 With this changes, the ex-switch extcon class device works as it once
|
/linux-4.4.14/Documentation/nvmem/ |
D | nvmem.txt | 137 ex:
|
/linux-4.4.14/net/rds/ |
D | iw_send.c | 146 send->s_send_wr.ex.imm_data = 0; in rds_iw_send_init_ring() 208 be32_to_cpu(wc.ex.imm_data)); in rds_iw_send_cq_comp_handler()
|
D | ib_send.c | 200 send->s_wr.ex.imm_data = 0; in rds_ib_send_init_ring() 254 be32_to_cpu(wc->ex.imm_data)); in rds_ib_send_cqe_handler()
|
D | iw_rdma.c | 712 s_wr.ex.invalidate_rkey = ibmr->mr->rkey;
|
D | iw_recv.c | 790 be32_to_cpu(wc.ex.imm_data)); in rds_poll_cq()
|
D | ib_cm.c | 252 wc->byte_len, be32_to_cpu(wc->ex.imm_data)); in poll_cq()
|
D | ib_recv.c | 966 be32_to_cpu(wc->ex.imm_data)); in rds_ib_recv_cqe_handler()
|
/linux-4.4.14/drivers/infiniband/hw/mthca/ |
D | mthca_cq.c | 624 entry->ex.imm_data = cqe->imm_etype_pkey_eec; in mthca_poll_one() 630 entry->ex.imm_data = cqe->imm_etype_pkey_eec; in mthca_poll_one()
|
D | mthca_qp.c | 1510 sqp->ud_header.immediate_data = wr->wr.ex.imm_data; in build_mlx_header() 1657 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data; in mthca_tavor_post_send() 1998 ((struct mthca_next_seg *) wqe)->imm = wr->ex.imm_data; in mthca_arbel_post_send()
|
/linux-4.4.14/drivers/infiniband/hw/ocrdma/ |
D | ocrdma_verbs.c | 2252 hdr->immdt = ntohl(wr->ex.imm_data); in ocrdma_post_send() 2260 hdr->lkey = wr->ex.invalidate_rkey; in ocrdma_post_send() 2265 hdr->immdt = ntohl(wr->ex.imm_data); in ocrdma_post_send() 2279 hdr->lkey = wr->ex.invalidate_rkey; in ocrdma_post_send() 2806 ibwc->ex.imm_data = htonl(le32_to_cpu(cqe->rq.lkey_immdt)); in ocrdma_poll_success_rcqe() 2810 ibwc->ex.imm_data = htonl(le32_to_cpu(cqe->rq.lkey_immdt)); in ocrdma_poll_success_rcqe() 2813 ibwc->ex.invalidate_rkey = le32_to_cpu(cqe->rq.lkey_immdt); in ocrdma_poll_success_rcqe()
|
/linux-4.4.14/arch/m32r/platforms/mappi/ |
D | dot.gdbinit | 97 ex.) MAC address: 10 20 30 40 50 60
|
D | dot.gdbinit.nommu | 97 ex.) MAC address: 10 20 30 40 50 60
|
D | dot.gdbinit.smp | 161 ex.) MAC address: 10 20 30 40 50 60
|
/linux-4.4.14/drivers/md/ |
D | dm-snap.c | 625 struct dm_exception *ex, *next; in dm_exception_table_exit() local 632 list_for_each_entry_safe (ex, next, slot, hash_list) in dm_exception_table_exit() 633 kmem_cache_free(mem, ex); in dm_exception_table_exit()
|
/linux-4.4.14/drivers/infiniband/core/ |
D | uverbs_cmd.c | 1601 tmp.ex.imm_data = (__u32 __force) wc->ex.imm_data; in copy_wc_to_user() 2562 next->ex.imm_data = in ib_uverbs_post_send() 2563 (__be32 __force) user_wr->ex.imm_data; in ib_uverbs_post_send() 2565 next->ex.invalidate_rkey = user_wr->ex.invalidate_rkey; in ib_uverbs_post_send()
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | decbin.S | 47 | representation (ex. 0.1E2, 1E1, 10E0, 100E-1), is converted
|
/linux-4.4.14/Documentation/serial/ |
D | rocket.txt | 59 starting at zero (ex. /dev/ttyR0, /devttyR1, ...). If you have multiple cards
|
/linux-4.4.14/drivers/infiniband/ulp/iser/ |
D | iser_memory.c | 423 inv_wr->ex.invalidate_rkey = mr->rkey; in iser_inv_rkey()
|
/linux-4.4.14/Documentation/usb/ |
D | gadget_printer.txt | 43 (ex: modprobe g_printer idVendor=0x0525 idProduct=0xa4a8 ):
|
/linux-4.4.14/drivers/staging/rdma/amso1100/ |
D | c2_qp.c | 832 cpu_to_be32(ib_wr->ex.invalidate_rkey); in c2_post_send()
|
/linux-4.4.14/include/rdma/ |
D | ib_verbs.h | 770 } ex; member 1092 } ex; member
|
/linux-4.4.14/scripts/mod/ |
D | modpost.c | 246 static const char *export_str(enum export ex) in export_str() argument 248 return export_list[ex].str; in export_str()
|
/linux-4.4.14/drivers/infiniband/hw/cxgb4/ |
D | cq.c | 726 wc->ex.invalidate_rkey = CQE_WRID_STAG(&cqe); in c4iw_poll_cq_one()
|
D | qp.c | 484 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey); in build_rdma_send() 680 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey); in build_inv_stag()
|
/linux-4.4.14/fs/ceph/ |
D | caps.c | 3189 static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex, in handle_cap_export() argument 3198 unsigned mseq = le32_to_cpu(ex->migrate_seq); in handle_cap_export() 3218 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id)) in handle_cap_export()
|
/linux-4.4.14/drivers/net/wan/ |
D | Kconfig | 273 Driver for Etinc PCISYNC boards based on the Infineon (ex. Siemens)
|
/linux-4.4.14/drivers/infiniband/hw/nes/ |
D | nes_verbs.c | 3313 ib_wr->ex.invalidate_rkey); in nes_post_send() 3383 ib_wr->ex.invalidate_rkey); in nes_post_send() 3401 ib_wr->ex.invalidate_rkey); in nes_post_send()
|
/linux-4.4.14/drivers/misc/ |
D | Kconfig | 294 instructions using user virtual addresses. GRU instructions (ex., bcopy) use
|
/linux-4.4.14/mm/ |
D | Kconfig | 587 architecture (ex, ARM) performs VM mapping faster than copying,
|
/linux-4.4.14/drivers/infiniband/ulp/isert/ |
D | ib_isert.c | 2508 inv_wr->ex.invalidate_rkey = mr->rkey; in isert_inv_rkey()
|
/linux-4.4.14/drivers/infiniband/ulp/srp/ |
D | ib_srp.c | 1053 .ex.invalidate_rkey = rkey, in srp_inv_rkey()
|
/linux-4.4.14/drivers/eisa/ |
D | eisa.ids | 1253 UBIA200 "Ungermann-Bass Personal NIU/ex"
|
/linux-4.4.14/arch/x86/kvm/ |
D | vmx.c | 5325 kvm_run->ex.exception = ex_no; in handle_exception() 5326 kvm_run->ex.error_code = error_code; in handle_exception()
|
/linux-4.4.14/arch/m68k/ifpsp060/src/ |
D | pfpsp.S | 4525 # ex: 0x00 ==> 0x00
|
D | fpsp.S | 18476 # ex: 0x00 ==> 0x00
|
/linux-4.4.14/ |
D | CREDITS | 768 D: ex 2.2 maintainer
|