Home
last modified time | relevance | path

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

12345678

/Linux-v5.4/tools/build/tests/
Drun.sh5 make -C ex V=1 clean > ex.out 2>&1
6 make -C ex V=1 >> ex.out 2>&1
8 if [ ! -x ./ex/ex ]; then
13 make -C ex V=1 clean > /dev/null 2>&1
14 rm -f ex.out
18 make -C ex V=1 clean > ex.out 2>&1
21 make -rR -C ex V=1 ex.o >> ex.out 2>&1
22 make -rR -C ex V=1 ex.i >> ex.out 2>&1
23 make -rR -C ex V=1 ex.s >> ex.out 2>&1
25 if [ -x ./ex/ex ]; then
[all …]
/Linux-v5.4/fs/
Dbinfmt_aout.c120 struct exec ex; in load_aout_binary() local
126 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary()
127 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC && in load_aout_binary()
128 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) || in load_aout_binary()
129 N_TRSIZE(ex) || N_DRSIZE(ex) || in load_aout_binary()
130 i_size_read(file_inode(bprm->file)) < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { in load_aout_binary()
141 fd_offset = N_TXTOFF(ex); in load_aout_binary()
150 if (ex.a_data + ex.a_bss > rlim) in load_aout_binary()
160 SET_AOUT_PERSONALITY(bprm, ex); in load_aout_binary()
166 current->mm->end_code = ex.a_text + in load_aout_binary()
[all …]
/Linux-v5.4/arch/x86/ia32/
Dia32_aout.c109 struct exec ex; in load_aout_binary() local
112 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary()
113 if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC && in load_aout_binary()
114 N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) || in load_aout_binary()
115 N_TRSIZE(ex) || N_DRSIZE(ex) || in load_aout_binary()
117 ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) { in load_aout_binary()
121 fd_offset = N_TXTOFF(ex); in load_aout_binary()
130 if (ex.a_data + ex.a_bss > rlim) in load_aout_binary()
148 current->mm->end_code = ex.a_text + in load_aout_binary()
149 (current->mm->start_code = N_TXTADDR(ex)); in load_aout_binary()
[all …]
/Linux-v5.4/security/
Ddevice_cgroup.c61 struct dev_exception_item *ex, *tmp, *new; in dev_exceptions_copy() local
65 list_for_each_entry(ex, orig, list) { in dev_exceptions_copy()
66 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL); in dev_exceptions_copy()
75 list_for_each_entry_safe(ex, tmp, dest, list) { in dev_exceptions_copy()
76 list_del(&ex->list); in dev_exceptions_copy()
77 kfree(ex); in dev_exceptions_copy()
86 struct dev_exception_item *ex) in dev_exception_add() argument
92 excopy = kmemdup(ex, sizeof(*ex), GFP_KERNEL); in dev_exception_add()
97 if (walk->type != ex->type) in dev_exception_add()
99 if (walk->major != ex->major) in dev_exception_add()
[all …]
/Linux-v5.4/net/ceph/
Dstriper.c59 struct ceph_object_extent *ex = in lookup_last() local
60 list_entry(pos, typeof(*ex), oe_item); in lookup_last()
62 if (ex->oe_objno == objno) in lookup_last()
63 return ex; in lookup_last()
65 if (ex->oe_objno < objno) in lookup_last()
77 struct ceph_object_extent *ex; in lookup_containing() local
79 list_for_each_entry(ex, object_extents, oe_item) { in lookup_containing()
80 if (ex->oe_objno == objno && in lookup_containing()
81 ex->oe_off <= objoff && in lookup_containing()
82 ex->oe_off + ex->oe_len >= objoff + xlen) /* paranoia */ in lookup_containing()
[all …]
/Linux-v5.4/tools/build/tests/ex/
DMakefile7 ex: target
11 ex: ex-in.o libex-in.o target
14 ex.%: fixdep FORCE
17 ex-in.o: fixdep FORCE
18 make $(build)=ex
25 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 += b.o
5 ex-y += empty/
6 ex-y += empty2/
7 ex-y += inc.o
/Linux-v5.4/fs/ext4/
Dextents.c176 struct ext4_extent *ex; in ext4_ext_find_goal() local
195 ex = path[depth].p_ext; in ext4_ext_find_goal()
196 if (ex) { in ext4_ext_find_goal()
197 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); in ext4_ext_find_goal()
198 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); in ext4_ext_find_goal()
222 struct ext4_extent *ex, int *err, unsigned int flags) in ext4_ext_new_meta_block() argument
226 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); in ext4_ext_new_meta_block()
535 struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); in __read_extent_tree_block() local
539 for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { in __read_extent_tree_block()
541 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in __read_extent_tree_block()
[all …]
Dext4_extents.h222 static inline ext4_fsblk_t ext4_ext_pblock(struct ext4_extent *ex) in ext4_ext_pblock() argument
226 block = le32_to_cpu(ex->ee_start_lo); in ext4_ext_pblock()
227 block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1; in ext4_ext_pblock()
249 static inline void ext4_ext_store_pblock(struct ext4_extent *ex, in ext4_ext_store_pblock() argument
252 ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff)); in ext4_ext_store_pblock()
253 ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) & in ext4_ext_store_pblock()
/Linux-v5.4/fs/ocfs2/
Ddlmglue.h139 int ex,
144 int ex,
158 int ex);
160 int ex);
162 int ex);
168 int ocfs2_nfs_sync_lock(struct ocfs2_super *osb, int ex);
169 void ocfs2_nfs_sync_unlock(struct ocfs2_super *osb, int ex);
176 int ocfs2_dentry_lock(struct dentry *dentry, int ex);
177 void ocfs2_dentry_unlock(struct dentry *dentry, int ex);
178 int ocfs2_file_lock(struct file *file, int ex, int trylock);
[all …]
/Linux-v5.4/tools/testing/selftests/x86/
Dtest_FISTTP.c23 int ex; in test() local
39 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test()
40 if (ex != 0) { in test()
59 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test()
60 if (ex != FE_INEXACT) { in test()
82 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test()
83 if (ex != FE_INEXACT) { in test()
103 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test()
104 if (ex != FE_INEXACT) { in test()
/Linux-v5.4/Documentation/devicetree/bindings/interrupt-controller/
Drenesas,irqc.txt5 - compatible: must be "renesas,irqc-<soctype>" or "renesas,intc-ex-<soctype>",
18 - "renesas,intc-ex-r8a774a1" (RZ/G2M)
19 - "renesas,intc-ex-r8a774c0" (RZ/G2E)
20 - "renesas,intc-ex-r8a7795" (R-Car H3)
21 - "renesas,intc-ex-r8a7796" (R-Car M3-W)
22 - "renesas,intc-ex-r8a77965" (R-Car M3-N)
23 - "renesas,intc-ex-r8a77970" (R-Car V3M)
24 - "renesas,intc-ex-r8a77980" (R-Car V3H)
25 - "renesas,intc-ex-r8a77990" (R-Car E3)
26 - "renesas,intc-ex-r8a77995" (R-Car D3)
/Linux-v5.4/tools/build/Documentation/
DBuild.txt51 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-v5.4/drivers/net/team/
Dteam_mode_loadbalance.c74 struct lb_priv_ex *ex; /* priv extension */ member
93 (lb_priv)->ex->tx_hash_to_port_mapping[hash].port
96 (lb_priv)->ex->tx_hash_to_port_mapping[hash].opt_inst_info
108 pm = &lb_priv->ex->tx_hash_to_port_mapping[i]; in lb_tx_hash_to_port_mapping_null_port()
249 if (!lb_priv->ex->orig_fprog) { in lb_bpf_func_get()
254 ctx->data.bin_val.len = lb_priv->ex->orig_fprog->len * in lb_bpf_func_get()
256 ctx->data.bin_val.ptr = lb_priv->ex->orig_fprog->filter; in lb_bpf_func_get()
307 if (lb_priv->ex->orig_fprog) { in lb_bpf_func_set()
309 __fprog_destroy(lb_priv->ex->orig_fprog); in lb_bpf_func_set()
315 lb_priv->ex->orig_fprog = fprog; in lb_bpf_func_set()
[all …]
/Linux-v5.4/arch/mips/include/asm/
Delf.h345 #define SET_PERSONALITY2(ex, state) \ argument
376 #define __SET_PERSONALITY32_O32(ex, state) \ argument
388 #define __SET_PERSONALITY32_O32(ex, state) \ argument
393 #define __SET_PERSONALITY32(ex, state) \ argument
395 if ((((ex).e_flags & EF_MIPS_ABI2) != 0) && \
396 ((ex).e_flags & EF_MIPS_ABI) == 0) \
399 __SET_PERSONALITY32_O32(ex, state); \
402 #define __SET_PERSONALITY32(ex, state) do { } while (0) argument
405 #define SET_PERSONALITY2(ex, state) \ argument
414 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
[all …]
/Linux-v5.4/drivers/staging/qlge/
DTODO2 queues become empty because of allocation failures (ex. under memory
10 * truesize accounting is incorrect (ex: a 9000B frame has skb->truesize 10280
29 * some structures are initialized redundantly (ex. memset 0 after
32 possible (ex. ql_free_rx_buffers(), ql_alloc_rx_buffers())
35 other qlogic drivers, with clashes, ex: ql_sem_spinlock) or nothing (with
36 clashes, ex: struct ob_mac_iocb_req). Rename everything to use the "qlge_"
38 * avoid legacy/deprecated apis (ex. replace pci_dma_*, replace pci_enable_msi,
40 * some "while" loops could be rewritten with simple "for", ex.
43 * fix weird line wrapping (all over, ex. the ql_set_routing_reg() calls in
45 * fix weird indentation (all over, ex. the for loops in qlge_get_stats())
/Linux-v5.4/drivers/scsi/libsas/
Dsas_expander.c203 struct expander_device *ex = &dev->ex_dev; in sas_set_ex_phy() local
204 struct ex_phy *phy = &ex->ex_phy[phy_id]; in sas_set_ex_phy()
392 struct expander_device *ex = &dev->ex_dev; in sas_ex_phy_discover() local
409 if (0 <= single && single < ex->num_phys) { in sas_ex_phy_discover()
414 for (i = 0; i < ex->num_phys; i++) { in sas_ex_phy_discover()
429 struct expander_device *ex = &dev->ex_dev; in sas_expander_discover() local
432 ex->ex_phy = kcalloc(ex->num_phys, sizeof(*ex->ex_phy), GFP_KERNEL); in sas_expander_discover()
433 if (!ex->ex_phy) in sas_expander_discover()
442 kfree(ex->ex_phy); in sas_expander_discover()
443 ex->ex_phy = NULL; in sas_expander_discover()
[all …]
Dsas_internal.h160 struct expander_device *ex = &dev->ex_dev; in sas_add_parent_port() local
161 struct ex_phy *ex_phy = &ex->ex_phy[phy_id]; in sas_add_parent_port()
163 if (!ex->parent_port) { in sas_add_parent_port()
164 ex->parent_port = sas_port_alloc(&dev->rphy->dev, phy_id); in sas_add_parent_port()
166 BUG_ON(!ex->parent_port); in sas_add_parent_port()
167 BUG_ON(sas_port_add(ex->parent_port)); in sas_add_parent_port()
168 sas_port_mark_backlink(ex->parent_port); in sas_add_parent_port()
170 sas_port_add_phy(ex->parent_port, ex_phy->phy); in sas_add_parent_port()
/Linux-v5.4/fs/hpfs/
Dea.c19 char ex[4 + 255 + 1 + 8]; in hpfs_ea_ext_remove() local
20 struct extended_attribute *ea = (struct extended_attribute *)ex; in hpfs_ea_ext_remove()
26 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return; in hpfs_ea_ext_remove()
33 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 9, ex+4)) in hpfs_ea_ext_remove()
80 char ex[4 + 255 + 1 + 8]; in hpfs_read_ea() local
98 ea = (struct extended_attribute *)ex; in hpfs_read_ea()
104 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return -EIO; in hpfs_read_ea()
105 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 1 + (ea_indirect(ea) ? 8 : 0), ex + 4)) in hpfs_read_ea()
155 char ex[4 + 255 + 1 + 8]; in hpfs_get_ea() local
156 ea = (struct extended_attribute *)ex; in hpfs_get_ea()
[all …]
/Linux-v5.4/include/linux/
Delf.h12 # define elf_read_implies_exec(ex, have_pt_gnu_stack) 0 argument
15 #define SET_PERSONALITY(ex) \ argument
20 #define SET_PERSONALITY2(ex, state) \ argument
21 SET_PERSONALITY(ex)
/Linux-v5.4/tools/perf/lib/Documentation/tutorial/
Dtutorial.rst42 $ ls -d ex-*
43 ex-1-compile ex-2-evsel-stat ex-3-evlist-stat
45 ex-1-compile example
52 $ cd ex-1-compile/
115 ex-2-evsel-stat example
120 ex-3-evlist-stat example
/Linux-v5.4/arch/powerpc/boot/dts/
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 …]
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 …]
/Linux-v5.4/arch/mips/boot/
Delf2ecoff.c270 Elf32_Ehdr ex; in main() local
307 i = read(infile, &ex, sizeof ex); in main()
308 if (i != sizeof ex) { in main()
315 if (ex.e_ident[EI_DATA] == ELFDATA2MSB) in main()
326 convert_elf_hdr(&ex); in main()
329 ph = (Elf32_Phdr *) saveRead(infile, ex.e_phoff, in main()
330 ex.e_phnum * sizeof(Elf32_Phdr), in main()
333 convert_elf_phdrs(ph, ex.e_phnum); in main()
335 sh = (Elf32_Shdr *) saveRead(infile, ex.e_shoff, in main()
336 ex.e_shnum * sizeof(Elf32_Shdr), in main()
[all …]
/Linux-v5.4/arch/powerpc/include/asm/
Delf.h85 # define SET_PERSONALITY(ex) \ argument
87 if (((ex).e_flags & 0x3) == 2) \
91 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
106 # define elf_read_implies_exec(ex, exec_stk) (is_32bit_task() ? \ argument
109 # define elf_read_implies_exec(ex, exec_stk) (exec_stk == EXSTACK_DEFAULT) argument

12345678