Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 152 of 152) sorted by relevance

/linux-4.1.27/tools/build/tests/
Drun.sh4 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.1.27/fs/
Dbinfmt_aout.c205 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 …]
Dselect.c338 #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()
Dcompat.c1270 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.1.27/security/
Ddevice_cgroup.c69 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.1.27/arch/x86/ia32/
Dia32_aout.c264 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.1.27/fs/ext4/
Dextents.c182 struct ext4_extent *ex; in ext4_ext_find_goal() local
201 ex = path[depth].p_ext; in ext4_ext_find_goal()
202 if (ex) { in ext4_ext_find_goal()
203 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); in ext4_ext_find_goal()
204 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); in ext4_ext_find_goal()
228 struct ext4_extent *ex, int *err, unsigned int flags) in ext4_ext_new_meta_block() argument
232 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); in ext4_ext_new_meta_block()
528 struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); in __read_extent_tree_block() local
532 for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { in __read_extent_tree_block()
534 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in __read_extent_tree_block()
[all …]
Dext4_extents.h220 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()
Dmballoc.c1493 int needed, struct ext4_free_extent *ex) in mb_find_extent() argument
1500 BUG_ON(ex == NULL); in mb_find_extent()
1506 ex->fe_len = 0; in mb_find_extent()
1507 ex->fe_start = 0; in mb_find_extent()
1508 ex->fe_group = 0; in mb_find_extent()
1516 ex->fe_len = 1 << order; in mb_find_extent()
1517 ex->fe_start = block << order; in mb_find_extent()
1518 ex->fe_group = e4b->bd_group; in mb_find_extent()
1521 next = next - ex->fe_start; in mb_find_extent()
1522 ex->fe_len -= next; in mb_find_extent()
[all …]
Dcrypto.c480 int ext4_encrypted_zeroout(struct inode *inode, struct ext4_extent *ex) in ext4_encrypted_zeroout() argument
485 ext4_lblk_t lblk = ex->ee_block; in ext4_encrypted_zeroout()
486 ext4_fsblk_t pblk = ext4_ext_pblock(ex); in ext4_encrypted_zeroout()
487 unsigned int len = ext4_ext_get_actual_len(ex); in ext4_encrypted_zeroout()
Dmove_extent.c619 struct ext4_extent *ex; in ext4_move_extents() local
628 ex = path[path->p_depth].p_ext; in ext4_move_extents()
630 cur_blk = le32_to_cpu(ex->ee_block); in ext4_move_extents()
631 cur_len = ext4_ext_get_actual_len(ex); in ext4_move_extents()
653 unwritten = ext4_ext_is_unwritten(ex); in ext4_move_extents()
Dmigrate.c621 struct ext4_extent *ex; in ext4_ind_migrate() local
655 ex = EXT_FIRST_EXTENT(eh); in ext4_ind_migrate()
664 len = le16_to_cpu(ex->ee_len); in ext4_ind_migrate()
665 blk = ext4_ext_pblock(ex); in ext4_ind_migrate()
666 start = le32_to_cpu(ex->ee_block); in ext4_ind_migrate()
Dextents_status.c466 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()
Dext4.h2099 int ext4_encrypted_zeroout(struct inode *inode, struct ext4_extent *ex);
/linux-4.1.27/tools/build/tests/ex/
DMakefile7 ex: ex-in.o libex-in.o target
10 ex.%: FORCE
13 ex-in.o: FORCE
14 make $(build)=ex
21 rm -f ex ex.i ex.s
DBuild1 ex-y += ex.o
2 ex-y += a.o
3 ex-y += b.o
4 ex-y += empty/
/linux-4.1.27/fs/ocfs2/
Ddlmglue.h121 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 …]
Ddlmglue.c1611 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 …]
Dquota.h110 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);
Dquota_global.c296 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 …]
/linux-4.1.27/tools/build/Documentation/
DBuild.txt49 ex/a.c
56 Out of which you build the 'ex' binary ' and the 'libex.a' library:
58 'ex' - consists of 'a.o', 'b.o' and libex.a
61 The build framework does not create the 'ex' and 'libex.a' binaries for you, it
66 ex/Build:
67 ex-y += a.o
68 ex-y += b.o
74 ex/arch/Build:
80 $ make -f tools/build/Makefile.build dir=. obj=ex
85 ex/ex-in.o
[all …]
/linux-4.1.27/drivers/net/team/
Dteam_mode_loadbalance.c64 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.1.27/arch/cris/boot/tools/
Dbuild.c112 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.1.27/drivers/scsi/libsas/
Dsas_expander.c206 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 …]
Dsas_internal.h168 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.1.27/arch/mips/include/asm/
Delf.h295 #define SET_PERSONALITY2(ex, state) \ argument
326 #define __SET_PERSONALITY32_O32(ex, state) \ argument
338 #define __SET_PERSONALITY32_O32(ex, state) \ argument
343 #define __SET_PERSONALITY32(ex, state) \ argument
345 if ((((ex).e_flags & EF_MIPS_ABI2) != 0) && \
346 ((ex).e_flags & EF_MIPS_ABI) == 0) \
349 __SET_PERSONALITY32_O32(ex, state); \
352 #define __SET_PERSONALITY32(ex, state) do { } while (0) argument
355 #define SET_PERSONALITY2(ex, state) \ argument
364 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
[all …]
/linux-4.1.27/include/linux/
Delf.h11 # 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)
Dpoll.h112 unsigned long *in, *out, *ex; member
/linux-4.1.27/arch/powerpc/include/asm/
Delf.h88 # 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.1.27/fs/hpfs/
Dea.c18 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.1.27/arch/powerpc/boot/dts/
Dobs600.dts56 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 …]
Dcanyonlands.dts53 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 …]
Dmakalu.dts52 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 …]
Dkilauea.dts52 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 …]
Dglacier.dts497 compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
539 compatible = "ibm,plb-pciex-460ex", "ibm,plb-pciex";
Dhaleakala.dts245 compatible = "ibm,plb-pciex-405ex", "ibm,plb-pciex";
/linux-4.1.27/arch/arm/include/asm/
Delf.h106 #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.1.27/arch/mips/boot/
Delf2ecoff.c268 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.1.27/include/math-emu/
Dsoft-fp.h123 #define FP_SET_EXCEPTION(ex) \ argument
124 _fex |= (ex)
126 #define FP_UNSET_EXCEPTION(ex) \ argument
127 _fex &= ~(ex)
/linux-4.1.27/scripts/rt-tester/
Drt-tester.py104 except getopt.GetoptError, ex:
124 except Exception,ex:
209 except Exception,ex:
210 sys.stderr.write(str(ex))
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dinterval_tree.h108 struct interval_node_extent *ex,
121 struct interval_node_extent *ex);
123 struct interval_node_extent *ex);
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/
Duar.c78 goto ex; in mlx5_cmd_alloc_uar()
82 goto ex; in mlx5_cmd_alloc_uar()
87 ex: in mlx5_cmd_alloc_uar()
104 goto ex; in mlx5_cmd_free_uar()
109 ex: in mlx5_cmd_free_uar()
Deq.c96 goto ex; in mlx5_cmd_destroy_eq()
101 ex: in mlx5_cmd_destroy_eq()
/linux-4.1.27/arch/s390/lib/
Dmem.S40 ex %r4,0(%r3)
57 ex %r4,0(%r3)
79 ex %r4,0(%r5)
/linux-4.1.27/arch/arm64/include/asm/
Delf.h117 #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.1.27/arch/tile/include/asm/
Delf.h127 #define SET_PERSONALITY(ex) do { } while (0) argument
166 #define SET_PERSONALITY(ex) \ argument
171 #define COMPAT_SET_PERSONALITY(ex) \ argument
/linux-4.1.27/arch/s390/include/asm/
Delf.h184 #define SET_PERSONALITY(ex) \ argument
192 #define SET_PERSONALITY(ex) \ argument
197 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) { \
/linux-4.1.27/arch/unicore32/include/asm/
Delf.h84 #define SET_PERSONALITY(ex) elf_set_personality(&(ex)) argument
/linux-4.1.27/drivers/infiniband/hw/ipath/
Dipath_uc.c116 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()
Dipath_ud.c98 wc.ex.imm_data = swqe->wr.ex.imm_data; in ipath_ud_loopback()
345 ohdr->u.ud.imm_data = wqe->wr.ex.imm_data; in ipath_make_ud_req()
483 wc.ex.imm_data = *(__be32 *) data; in ipath_ud_rcv()
486 wc.ex.imm_data = ohdr->u.ud.imm_data; in ipath_ud_rcv()
490 wc.ex.imm_data = 0; in ipath_ud_rcv()
Dipath_ruc.c335 wc.ex.imm_data = wqe->wr.ex.imm_data; in ipath_ruc_loopback()
346 wc.ex.imm_data = wqe->wr.ex.imm_data; in ipath_ruc_loopback()
Dipath_cq.c86 wc->uqueue[head].ex.imm_data = (__u32 __force) entry->ex.imm_data; in ipath_cq_enter()
Dipath_rc.c331 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.1.27/drivers/infiniband/hw/qib/
Dqib_uc.c119 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()
Dqib_ud.c135 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()
Dqib_ruc.c434 wc.ex.imm_data = wqe->wr.ex.imm_data; in qib_ruc_loopback()
448 wc.ex.imm_data = wqe->wr.ex.imm_data; in qib_ruc_loopback()
Dqib_cq.c89 wc->uqueue[head].ex.imm_data = in qib_cq_enter()
90 (__u32 __force)entry->ex.imm_data; in qib_cq_enter()
Dqib_rc.c355 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req()
395 ohdr->u.rc.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req()
536 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req()
577 ohdr->u.imm_data = wqe->wr.ex.imm_data; in qib_make_rc_req()
2005 wc.ex.imm_data = ohdr->u.imm_data; in qib_rc_rcv()
2013 wc.ex.imm_data = 0; in qib_rc_rcv()
2091 wc.ex.imm_data = ohdr->u.rc.imm_data; in qib_rc_rcv()
/linux-4.1.27/drivers/net/ethernet/nvidia/
Dforcedeth.c368 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.1.27/arch/x86/include/asm/
Delf.h194 #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.1.27/Documentation/
Dpnp.txt175 ex:
186 ex:
191 ex:
200 ex:
207 ex:
215 ex:
228 ex:
Dkprobes.txt460 If the functions find an incorrect probe (ex. an unregistered probe),
491 If the functions find some incorrect probes (ex. unregistered
/linux-4.1.27/arch/sparc/include/asm/
Delf_64.h201 #define SET_PERSONALITY(ex) \ argument
202 do { if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
/linux-4.1.27/arch/ia64/include/asm/
Delf.h204 #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)
Dpal.h443 ex : 1, /* MC is expected */ member
695 #define pmci_proc_machine_check_expected pme_processor.ex
/linux-4.1.27/arch/sh/kernel/cpu/sh2/
DMakefile5 obj-y := ex.o probe.o entry.o
/linux-4.1.27/arch/microblaze/include/asm/
Delf.h27 #define SET_PERSONALITY(ex) \ argument
/linux-4.1.27/arch/mips/loongson/loongson-3/
DMakefile4 obj-y += irq.o cop2-ex.o platform.o
/linux-4.1.27/arch/sh/kernel/cpu/sh5/
Dfpu.c104 asmlinkage void do_fpu_error(unsigned long ex, struct pt_regs *regs) in do_fpu_error() argument
/linux-4.1.27/include/uapi/linux/
Ddlm_plock.h31 __u8 ex; member
Dkvm.h229 } ex; member
/linux-4.1.27/arch/mips/netlogic/xlp/
DMakefile1 obj-y += setup.o nlm_hal.o cop2-ex.o dt.o
/linux-4.1.27/arch/avr32/kernel/
Dvmlinux.lds.S50 *(.ex.text)
Dentry-avr32b.S38 .section .ex.text,"ax",@progbits
/linux-4.1.27/arch/sh/kernel/cpu/sh2a/
DMakefile7 common-y += ex.o entry.o
/linux-4.1.27/arch/sh/kernel/
Dhw_breakpoint.c373 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()
Dtraps_32.c729 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()
Dtraps_64.c762 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.1.27/arch/sh/kernel/cpu/sh4/
DMakefile6 common-y += $(addprefix ../sh3/, entry.o ex.o)
/linux-4.1.27/arch/hexagon/kernel/
Dtraps.c54 static const char *ex_name(int ex) in ex_name() argument
56 switch (ex) { in ex_name()
/linux-4.1.27/drivers/infiniband/hw/mlx5/
Dcq.c207 wc->ex.imm_data = cqe->imm_inval_pkey; in handle_responder()
216 wc->ex.imm_data = cqe->imm_inval_pkey; in handle_responder()
221 wc->ex.invalidate_rkey = be32_to_cpu(cqe->imm_inval_pkey); in handle_responder()
994 goto ex; in resize_kernel()
1000 ex: in resize_kernel()
1108 goto ex; in mlx5_ib_resize_cq()
1175 ex: in mlx5_ib_resize_cq()
Dqp.c2066 return wr->ex.imm_data; in send_ieth()
2069 return cpu_to_be32(wr->ex.invalidate_rkey); in send_ieth()
2668 ctrl->imm = cpu_to_be32(wr->ex.invalidate_rkey); in mlx5_ib_post_send()
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
DMakefile5 obj-y := ex.o probe.o entry.o setup-sh3.o
/linux-4.1.27/Documentation/sound/oss/
DPSS-updates31 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.1.27/arch/cris/include/arch-v32/arch/
Delf.h33 #define elf_read_implies_exec_binary(ex, have_pt_gnu_stack) (!(have_pt_gnu_stack)) argument
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-coresight-devices-etb107 ex: echo 1 > /sys/bus/coresight/devices/20010000.etb/enable_sink
/linux-4.1.27/fs/dlm/
Dplock.c125 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.1.27/Documentation/cpu-freq/
Dcore.txt33 policy changes (ex. thermal modules like ACPI) or of all
34 frequency changes (ex. timing code) or even need to force certain
/linux-4.1.27/arch/parisc/kernel/
Dbinfmt_elf32.c89 #define SET_PERSONALITY(ex) \ argument
/linux-4.1.27/arch/xtensa/include/asm/
Delf.h193 #define SET_PERSONALITY(ex) \ argument
/linux-4.1.27/Documentation/devicetree/bindings/reset/
Dst,sti-powerdown.txt20 ex: "st,stih415-powerdown", "st,stih416-powerdown"
/linux-4.1.27/arch/cris/arch-v32/mm/
Dmmu.S39 .macro MMU_BUS_FAULT_HANDLER handler, mmu, we, ex
48 orq \ex << 1, $r13 ; execute?
Dinit.c52 REG_STATE(mmu, rw_mm_cfg, ex, on) | in cris_mmu_init()
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
Diwch_cq.c100 wc->ex.invalidate_rkey = CQE_WRID_STAG(cqe); in iwch_poll_cq_one()
Diwch_qp.c61 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()
194 wqe->local_inv.stag = cpu_to_be32(wr->ex.invalidate_rkey); in build_inv_stag()
/linux-4.1.27/arch/x86/um/asm/
Delf.h218 #define SET_PERSONALITY(ex) do ; while(0) argument
/linux-4.1.27/arch/parisc/include/asm/
Delf.h249 #define SET_PERSONALITY(ex) \ argument
/linux-4.1.27/arch/mips/kernel/
Dr4k_fpu.S29 .ex\@: \insn \reg, \src
32 PTR .ex\@, fault
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dhead.S92 | REG_STATE(mmu, rw_mm_cfg, ex, on) \
113 | REG_STATE(mmu, rw_mm_cfg, ex, on) \
/linux-4.1.27/include/trace/events/
Dext4.h2057 TP_PROTO(struct inode *inode, struct ext4_extent *ex,
2061 TP_ARGS(inode, ex, from, to, partial_cluster),
2080 __entry->ee_pblk = ext4_ext_pblock(ex);
2081 __entry->ee_lblk = le32_to_cpu(ex->ee_block);
2082 __entry->ee_len = ext4_ext_get_actual_len(ex);
2099 struct ext4_extent *ex,
2102 TP_ARGS(inode, start, ex, partial_cluster),
2119 __entry->ee_lblk = le32_to_cpu(ex->ee_block);
2120 __entry->ee_pblk = ext4_ext_pblock(ex);
2121 __entry->ee_len = ext4_ext_get_actual_len(ex);
/linux-4.1.27/drivers/infiniband/hw/ehca/
Dehca_reqs.c214 wqe_p->immediate_data = be32_to_cpu(send_wr->ex.imm_data); in ehca_write_swqe()
788 wc->ex.imm_data = cpu_to_be32(cqe->immediate_data); in ehca_poll_cq_one()
851 wc->ex.imm_data = wqe->immediate_data; in generate_flush_cqes()
/linux-4.1.27/arch/sh/include/asm/
Delf.h186 #define SET_PERSONALITY(ex) \ argument
/linux-4.1.27/include/uapi/rdma/
Dib_user_verbs.h389 } ex; member
645 } ex; member
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
Dinterval_tree.c215 struct interval_node_extent *ex) in interval_find() argument
221 rc = extent_compare(ex, &walk->in_extent); in interval_find()
/linux-4.1.27/drivers/infiniband/core/
Duverbs_cmd.c1480 tmp.ex.imm_data = (__u32 __force) wc->ex.imm_data; in copy_wc_to_user()
2262 next->ex.imm_data = in ib_uverbs_post_send()
2263 (__be32 __force) user_wr->ex.imm_data; in ib_uverbs_post_send()
2267 next->ex.imm_data = in ib_uverbs_post_send()
2268 (__be32 __force) user_wr->ex.imm_data; in ib_uverbs_post_send()
2277 next->ex.imm_data = in ib_uverbs_post_send()
2278 (__be32 __force) user_wr->ex.imm_data; in ib_uverbs_post_send()
2281 next->ex.invalidate_rkey = in ib_uverbs_post_send()
2282 user_wr->ex.invalidate_rkey; in ib_uverbs_post_send()
/linux-4.1.27/Documentation/virtual/kvm/
Dhypercalls.txt77 kernel mode for an event to occur (ex: a spinlock to become available) can
Dapi.txt3052 } ex;
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Dcq.c825 wc->ex.imm_data = cqe->immed_rss_invalid; in mlx4_ib_poll_one()
830 wc->ex.invalidate_rkey = be32_to_cpu(cqe->immed_rss_invalid); in mlx4_ib_poll_one()
839 wc->ex.imm_data = cqe->immed_rss_invalid; in mlx4_ib_poll_one()
Dqp.c2263 sqp->ud_header.immediate_data = wr->ex.imm_data; in build_mlx_header()
2622 return wr->ex.imm_data; in send_ieth()
2625 return cpu_to_be32(wr->ex.invalidate_rkey); in send_ieth()
2748 set_local_inv_seg(wqe, wr->ex.invalidate_rkey); in mlx4_ib_post_send()
/linux-4.1.27/drivers/media/pci/solo6x10/
Dsolo6x10-v4l2.c71 int sx, int sy, int ex, int ey, int scale) in solo_win_setup() argument
80 SOLO_VI_WIN_EX(ex) | in solo_win_setup()
/linux-4.1.27/arch/m68k/ifpsp060/
DMISC192 ex. files
/linux-4.1.27/Documentation/filesystems/
Dbefs.txt89 ex)
Dproc.txt430 VmFlags: rd ex mr mw me de
451 ex - executable
Dcoda.txt1355 44..2266.. ooddyy__eexxppaanndd
/linux-4.1.27/Documentation/dvb/
Dbt8xx.txt56 In your logs see f. ex.: dst_get_device_id: Recognize [DSTMCI].
/linux-4.1.27/net/sunrpc/xprtrdma/
Dsvc_rdma_recvfrom.c325 read_wr.ex.invalidate_rkey = ctxt->frmr->mr->lkey; in rdma_read_chunk_frmr()
334 inv_wr.ex.invalidate_rkey = frmr->mr->lkey; in rdma_read_chunk_frmr()
Dfrwr_ops.c273 invalidate_wr.ex.invalidate_rkey = seg1->rl_mw->r.frmr.fr_mr->rkey; in frwr_op_unmap()
Dverbs.c1238 invalidate_wr.ex.invalidate_rkey = r->r.frmr.fr_mr->rkey; in rpcrdma_retry_local_inv()
/linux-4.1.27/Documentation/extcon/
Dporting-android-switch-class42 With this changes, the ex-switch extcon class device works as it once
/linux-4.1.27/net/rds/
Diw_send.c146 send->s_wr.ex.imm_data = 0; in rds_iw_send_init_ring()
216 be32_to_cpu(wc.ex.imm_data)); in rds_iw_send_cq_comp_handler()
Dib_send.c234 send->s_wr.ex.imm_data = 0; in rds_ib_send_init_ring()
297 be32_to_cpu(wc.ex.imm_data)); in rds_ib_send_cq_comp_handler()
Diw_recv.c790 be32_to_cpu(wc.ex.imm_data)); in rds_poll_cq()
Diw_rdma.c744 s_wr.ex.invalidate_rkey = ibmr->mr->rkey;
Dib_recv.c960 be32_to_cpu(wc.ex.imm_data)); in rds_poll_cq()
/linux-4.1.27/drivers/infiniband/hw/mthca/
Dmthca_cq.c624 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()
Dmthca_qp.c1510 sqp->ud_header.immediate_data = 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.1.27/drivers/infiniband/hw/ocrdma/
Docrdma_verbs.c2204 hdr->immdt = ntohl(wr->ex.imm_data); in ocrdma_post_send()
2212 hdr->lkey = wr->ex.invalidate_rkey; in ocrdma_post_send()
2217 hdr->immdt = ntohl(wr->ex.imm_data); in ocrdma_post_send()
2231 hdr->lkey = wr->ex.invalidate_rkey; in ocrdma_post_send()
2758 ibwc->ex.imm_data = htonl(le32_to_cpu(cqe->rq.lkey_immdt)); in ocrdma_poll_success_rcqe()
2762 ibwc->ex.imm_data = htonl(le32_to_cpu(cqe->rq.lkey_immdt)); in ocrdma_poll_success_rcqe()
2765 ibwc->ex.invalidate_rkey = le32_to_cpu(cqe->rq.lkey_immdt); in ocrdma_poll_success_rcqe()
/linux-4.1.27/arch/m32r/platforms/mappi/
Ddot.gdbinit97 ex.) MAC address: 10 20 30 40 50 60
Ddot.gdbinit.nommu97 ex.) MAC address: 10 20 30 40 50 60
Ddot.gdbinit.smp161 ex.) MAC address: 10 20 30 40 50 60
/linux-4.1.27/drivers/md/
Ddm-snap.c618 struct dm_exception *ex, *next; in dm_exception_table_exit() local
625 list_for_each_entry_safe (ex, next, slot, hash_list) in dm_exception_table_exit()
626 kmem_cache_free(mem, ex); in dm_exception_table_exit()
/linux-4.1.27/Documentation/serial/
Drocket.txt59 starting at zero (ex. /dev/ttyR0, /devttyR1, ...). If you have multiple cards
/linux-4.1.27/arch/m68k/fpsp040/
Ddecbin.S47 | representation (ex. 0.1E2, 1E1, 10E0, 100E-1), is converted
/linux-4.1.27/include/rdma/
Dib_verbs.h705 } ex; member
1038 } ex; member
/linux-4.1.27/Documentation/usb/
Dgadget_printer.txt43 (ex: modprobe g_printer idVendor=0x0525 idProduct=0xa4a8 ):
/linux-4.1.27/drivers/infiniband/ulp/iser/
Diser_memory.c643 inv_wr->ex.invalidate_rkey = mr->rkey; in iser_inv_rkey()
/linux-4.1.27/drivers/infiniband/hw/amso1100/
Dc2_qp.c832 cpu_to_be32(ib_wr->ex.invalidate_rkey); in c2_post_send()
/linux-4.1.27/scripts/mod/
Dmodpost.c245 static const char *export_str(enum export ex) in export_str() argument
247 return export_list[ex].str; in export_str()
/linux-4.1.27/fs/ceph/
Dcaps.c2881 static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex, in handle_cap_export() argument
2890 unsigned mseq = le32_to_cpu(ex->migrate_seq); in handle_cap_export()
2910 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id)) in handle_cap_export()
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
Dcq.c728 wc->ex.invalidate_rkey = CQE_WRID_STAG(&cqe); in c4iw_poll_cq_one()
Dqp.c460 wqe->send.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey); in build_rdma_send()
663 wqe->inv.stag_inv = cpu_to_be32(wr->ex.invalidate_rkey); in build_inv_stag()
/linux-4.1.27/drivers/net/wan/
DKconfig273 Driver for Etinc PCISYNC boards based on the Infineon (ex. Siemens)
/linux-4.1.27/drivers/infiniband/hw/nes/
Dnes_verbs.c3319 ib_wr->ex.invalidate_rkey); in nes_post_send()
3389 ib_wr->ex.invalidate_rkey); in nes_post_send()
3407 ib_wr->ex.invalidate_rkey); in nes_post_send()
/linux-4.1.27/drivers/misc/
DKconfig284 instructions using user virtual addresses. GRU instructions (ex., bcopy) use
/linux-4.1.27/mm/
DKconfig604 architecture (ex, ARM) performs VM mapping faster than copying,
/linux-4.1.27/drivers/infiniband/ulp/srp/
Dib_srp.c1047 .ex.invalidate_rkey = rkey, in srp_inv_rkey()
/linux-4.1.27/drivers/infiniband/ulp/isert/
Dib_isert.c2565 inv_wr->ex.invalidate_rkey = mr->rkey; in isert_inv_rkey()
/linux-4.1.27/arch/x86/kvm/
Dvmx.c5181 kvm_run->ex.exception = ex_no; in handle_exception()
5182 kvm_run->ex.error_code = error_code; in handle_exception()
/linux-4.1.27/drivers/eisa/
Deisa.ids1253 UBIA200 "Ungermann-Bass Personal NIU/ex"
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dpfpsp.S4525 # ex: 0x00 ==> 0x00
Dfpsp.S18476 # ex: 0x00 ==> 0x00
/linux-4.1.27/
DCREDITS764 D: ex 2.2 maintainer