Home
last modified time | relevance | path

Searched refs:exec (Results 1 – 179 of 179) sorted by relevance

/linux-4.4.14/include/uapi/linux/
Da.out.h43 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument
45 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument
46 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument
47 #define N_SET_INFO(exec, magic, type, flags) \ argument
48 ((exec).a_info = ((magic) & 0xffff) \
51 #define N_SET_MAGIC(exec, magic) \ argument
52 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff)))
54 #define N_SET_MACHTYPE(exec, machtype) \ argument
55 ((exec).a_info = \
56 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16))
[all …]
Dcn_proc.h82 } exec; member
/linux-4.4.14/tools/perf/util/
Dcomm.c82 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() argument
90 comm->exec = exec; in comm__new()
103 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument
115 if (exec) in comm__override()
116 comm->exec = true; in comm__override()
Dcomm.h14 bool exec; member
22 struct comm *comm__new(const char *str, u64 timestamp, bool exec);
25 bool exec);
Dthread.c116 if (comm->exec) in thread__exec_comm()
125 bool exec) in __thread__set_comm() argument
132 err = comm__override(curr, str, timestamp, exec); in __thread__set_comm()
136 new = comm__new(str, timestamp, exec); in __thread__set_comm()
141 if (exec) in __thread__set_comm()
Dthread.h61 bool exec);
Dprobe-event.c202 static int convert_exec_to_group(const char *exec, char **result) in convert_exec_to_group() argument
208 exec_copy = strdup(exec); in convert_exec_to_group()
477 static int get_text_start_address(const char *exec, unsigned long *address) in get_text_start_address() argument
484 fd = open(exec, O_RDONLY); in get_text_start_address()
556 int ntevs, const char *exec) in add_exec_to_probe_trace_events() argument
561 if (!exec) in add_exec_to_probe_trace_events()
564 ret = get_text_start_address(exec, &stext); in add_exec_to_probe_trace_events()
571 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
Dmachine.c470 bool exec = event->header.misc & PERF_RECORD_MISC_COMM_EXEC; in machine__process_comm_event() local
473 if (exec) in machine__process_comm_event()
480 __thread__set_comm(thread, event->comm.comm, sample->time, exec)) { in machine__process_comm_event()
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_gem_execbuffer.c94 struct drm_i915_gem_exec_object2 *exec, in eb_lookup_vmas() argument
108 obj = to_intel_bo(idr_find(&file->object_idr, exec[i].handle)); in eb_lookup_vmas()
112 exec[i].handle, i); in eb_lookup_vmas()
120 obj, exec[i].handle, i); in eb_lookup_vmas()
157 vma->exec_entry = &exec[i]; in eb_lookup_vmas()
161 uint32_t handle = args->flags & I915_EXEC_HANDLE_LUT ? i : exec[i].handle; in eb_lookup_vmas()
794 struct drm_i915_gem_exec_object2 *exec, in i915_gem_execbuffer_relocate_slow() argument
819 total += exec[i].relocation_count; in i915_gem_execbuffer_relocate_slow()
836 user_relocs = to_user_ptr(exec[i].relocs_ptr); in i915_gem_execbuffer_relocate_slow()
839 exec[i].relocation_count * sizeof(*reloc))) { in i915_gem_execbuffer_relocate_slow()
[all …]
/linux-4.4.14/arch/sparc/mm/
Dtlb.c70 bool exec, bool huge) in tlb_batch_add_one() argument
76 if (exec) in tlb_batch_add_one()
156 bool exec = pte_exec(*pte); in tlb_batch_pmd_scan() local
158 tlb_batch_add_one(mm, vaddr, exec, false); in tlb_batch_pmd_scan()
196 bool exec = pte_exec(orig_pte); in set_pmd_at() local
198 tlb_batch_add_one(mm, addr, exec, true); in set_pmd_at()
199 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec, in set_pmd_at()
/linux-4.4.14/arch/score/mm/
Dcache.c83 int exec = (vma->vm_flags & VM_EXEC); in __update_cache() local
91 if (exec) in __update_cache()
176 int exec = vma->vm_flags & VM_EXEC; in flush_cache_range() local
205 if (exec) in flush_cache_range()
214 int exec = vma->vm_flags & VM_EXEC; in flush_cache_page() local
219 if (exec) in flush_cache_page()
/linux-4.4.14/drivers/leds/
Dleds-lp8501.c164 u8 exec; in lp8501_run_engine() local
182 ret = lp55xx_read(chip, LP8501_REG_ENABLE, &exec); in lp8501_run_engine()
189 exec = (exec & ~LP8501_EXEC_ENG1_M) | LP8501_RUN_ENG1; in lp8501_run_engine()
194 exec = (exec & ~LP8501_EXEC_ENG2_M) | LP8501_RUN_ENG2; in lp8501_run_engine()
199 exec = (exec & ~LP8501_EXEC_ENG3_M) | LP8501_RUN_ENG3; in lp8501_run_engine()
205 lp55xx_update_bits(chip, LP8501_REG_ENABLE, LP8501_EXEC_M, exec); in lp8501_run_engine()
Dleds-lp5562.c160 u8 exec; in lp5562_run_engine() local
182 ret = lp55xx_read(chip, LP5562_REG_ENABLE, &exec); in lp5562_run_engine()
189 exec = (exec & ~LP5562_EXEC_ENG1_M) | LP5562_RUN_ENG1; in lp5562_run_engine()
194 exec = (exec & ~LP5562_EXEC_ENG2_M) | LP5562_RUN_ENG2; in lp5562_run_engine()
199 exec = (exec & ~LP5562_EXEC_ENG3_M) | LP5562_RUN_ENG3; in lp5562_run_engine()
205 lp55xx_update_bits(chip, LP5562_REG_ENABLE, LP5562_EXEC_M, exec); in lp5562_run_engine()
Dleds-lp5521.c178 u8 exec; in lp5521_run_engine() local
197 ret = lp55xx_read(chip, LP5521_REG_ENABLE, &exec); in lp5521_run_engine()
204 exec = (exec & ~LP5521_EXEC_R_M) | LP5521_RUN_R; in lp5521_run_engine()
209 exec = (exec & ~LP5521_EXEC_G_M) | LP5521_RUN_G; in lp5521_run_engine()
214 exec = (exec & ~LP5521_EXEC_B_M) | LP5521_RUN_B; in lp5521_run_engine()
220 lp55xx_update_bits(chip, LP5521_REG_ENABLE, LP5521_EXEC_M, exec); in lp5521_run_engine()
Dleds-lp5523.c234 u8 exec; in lp5523_run_engine() local
252 ret = lp55xx_read(chip, LP5523_REG_ENABLE, &exec); in lp5523_run_engine()
259 exec = (exec & ~LP5523_EXEC_ENG1_M) | LP5523_RUN_ENG1; in lp5523_run_engine()
264 exec = (exec & ~LP5523_EXEC_ENG2_M) | LP5523_RUN_ENG2; in lp5523_run_engine()
269 exec = (exec & ~LP5523_EXEC_ENG3_M) | LP5523_RUN_ENG3; in lp5523_run_engine()
275 lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec); in lp5523_run_engine()
/linux-4.4.14/arch/alpha/kernel/
Dbinfmt_loader.c10 struct exec *eh = (struct exec *)bprm->buf; in load_binary()
/linux-4.4.14/arch/mips/mm/
Dc-tx39.c169 int exec = vma->vm_flags & VM_EXEC; in tx39_flush_cache_page() local
203 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page()
205 if (exec) in tx39_flush_cache_page()
215 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page()
217 if (exec) in tx39_flush_cache_page()
Dc-r3k.c240 int exec = vma->vm_flags & VM_EXEC; in r3k_flush_cache_page() local
264 if (exec) in r3k_flush_cache_page()
Dcache.c132 int exec = !pte_no_exec(pte) && !cpu_has_ic_fills_f_dc; in __update_cache() local
144 if (exec || pages_do_alias(addr, address & PAGE_MASK)) in __update_cache()
Dc-r4k.c490 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_range() local
496 if (exec) in local_r4k_flush_cache_range()
503 int exec = vma->vm_flags & VM_EXEC; in r4k_flush_cache_range() local
505 if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) in r4k_flush_cache_range()
553 int exec = vma->vm_flags & VM_EXEC; in local_r4k_flush_cache_page() local
598 if (cpu_has_dc_aliases || (exec && !cpu_has_ic_fills_f_dc)) { in local_r4k_flush_cache_page()
601 if (exec && !cpu_icache_snoops_remote_store) in local_r4k_flush_cache_page()
604 if (exec) { in local_r4k_flush_cache_page()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/timer/
Dbase.c37 LIST_HEAD(exec); in nvkm_timer_alarm_trigger()
43 list_move_tail(&alarm->head, &exec); in nvkm_timer_alarm_trigger()
56 list_for_each_entry_safe(alarm, atemp, &exec, head) { in nvkm_timer_alarm_trigger()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/mxm/
Dmxms.c97 bool (*exec)(struct nvkm_mxm *, u8 *, void *), void *info) in mxms_foreach()
148 if (mxm->subdev.debug >= NV_DBG_DEBUG && (exec == NULL)) { in mxms_foreach()
170 if (!exec(mxm, desc, info)) in mxms_foreach()
Dbase.c201 bool (*exec)(struct nvkm_mxm *, u8 version); member
219 if (shadow->exec(mxm, version)) { in mxm_shadow()
/linux-4.4.14/arch/x86/mm/
Dpageattr-test.c44 long lpg, gpg, spg, exec; member
53 s->lpg = s->gpg = s->spg = s->exec = 0; in print_split()
85 s->exec++; in print_split()
95 s->spg, s->lpg, s->gpg, s->exec, in print_split()
/linux-4.4.14/arch/alpha/include/uapi/asm/
Da.out.h53 struct exec struct
89 (sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1))
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dgm204.c117 u32 exec, args; in gm204_devinit_post() local
135 ret = pmu_load(init, 0x04, post, &exec, &args); in gm204_devinit_post()
158 pmu_exec(init, exec); in gm204_devinit_post()
Dnv50.c141 struct nvbios_init exec = { in nv50_devinit_init() local
150 nvbios_exec(&exec); in nv50_devinit_init()
/linux-4.4.14/arch/cris/boot/tools/
Dbuild.c39 static int GCC_HEADER = sizeof(struct exec);
112 struct exec *ex = (struct exec *)buf; in main()
/linux-4.4.14/scripts/kconfig/
Dstreamline_config.pl114 my $exec = $conf->{"exec"};
118 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file";
Dqconf.cc903 headerPopup->exec(e->globalPos()); in contextMenuEvent()
1722 switch (mb.exec()) { in closeEvent()
1862 configApp->exec(); in main()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bus/
Dhwsq.h74 hwsq_exec(struct hwsq *ram, bool exec) in hwsq_exec() argument
78 ret = nvkm_hwsq_fini(&ram->hwsq, exec); in hwsq_exec()
Dhwsq.c61 nvkm_hwsq_fini(struct nvkm_hwsq **phwsq, bool exec) in nvkm_hwsq_fini() argument
70 if (exec) in nvkm_hwsq_fini()
/linux-4.4.14/Documentation/
DSAK.txt79 exec 3<&0
80 exec 4>&1
81 exec 5>&2
Ddebugging-modules.txt16 echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe
Djava.txt65 exec 1>&2
105 exec 1>&2
116 exec 1>&2
130 exec 1>&2
Dgcov.txt250 find $GCDA -type d -exec mkdir -p $TEMPDIR/\{\} \;
251 find $GCDA -name '*.gcda' -exec sh -c 'cat < $0 > '$TEMPDIR'/$0' {} \;
252 find $GCDA -name '*.gcno' -exec sh -c 'cp -d $0 '$TEMPDIR'/$0' {} \;
Dmagic-number.txt106 WANPIPE_MAGIC 0x414C4453 sdla_{dump,exec} include/linux/wanpipe.h
Dinitrd.txt228 # exec chroot . what-follows <dev/console >dev/console 2>&1
244 - use relative paths for dev/console in the exec command
Dcachetlb.txt50 fork, and exec.
153 page table operations such as what happens during exit and exec.
Ddma-buf-sharing.txt431 - In order to avoid fd leaks on exec, the FD_CLOEXEC flag must be set
433 potential security hole. It could give the newly exec'd application
Dadding-syscalls.txt112 the exec'ed program. (However, resist the temptation to re-use the actual value
Dkernel-parameters.txt1468 programs exec'd, files mmap'd for exec, and all files
1476 programs exec'd, files mmap'd for exec, and all files
/linux-4.4.14/fs/
Dbinfmt_aout.c163 put_user(bprm->exec, --sp); in create_aout_tables()
205 struct exec ex; in load_aout_binary()
211 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary()
343 struct exec ex; in load_aout_library()
Dexec.c696 bprm->exec -= stack_shift; in setup_arg_pages()
1073 void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec) in __set_task_comm() argument
1079 perf_event_comm(tsk, exec); in __set_task_comm()
1581 bprm->exec = bprm->p; in do_execveat_common()
Dbinfmt_elf.c151 create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec, in create_elf_tables() argument
238 NEW_AUX_ENT(AT_PHDR, load_addr + exec->e_phoff); in create_elf_tables()
240 NEW_AUX_ENT(AT_PHNUM, exec->e_phnum); in create_elf_tables()
243 NEW_AUX_ENT(AT_ENTRY, exec->e_entry); in create_elf_tables()
253 NEW_AUX_ENT(AT_EXECFN, bprm->exec); in create_elf_tables()
281 bprm->exec = (unsigned long)sp; /* XXX: PARISC HACK */ in create_elf_tables()
Dbinfmt_elf_fdpic.c652 NEW_AUX_ENT(AT_EXECFN, bprm->exec); in create_elf_fdpic_tables()
/linux-4.4.14/arch/x86/include/uapi/asm/
Da.out.h4 struct exec struct
/linux-4.4.14/arch/m68k/include/uapi/asm/
Da.out.h4 struct exec struct
/linux-4.4.14/tools/perf/tests/attr/
Dtest-record-C08 # no enable on exec for CPU attached
/linux-4.4.14/arch/alpha/include/asm/
DKbuild5 generic-y += exec.h
/linux-4.4.14/arch/frv/include/asm/
DKbuild4 generic-y += exec.h
/linux-4.4.14/arch/ia64/include/asm/
DKbuild3 generic-y += exec.h
/linux-4.4.14/arch/mn10300/include/asm/
DKbuild5 generic-y += exec.h
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/
Dbus.h13 int nvkm_hwsq_fini(struct nvkm_hwsq **, bool exec);
Dpmu.h42 int nvkm_memx_fini(struct nvkm_memx **, bool exec);
/linux-4.4.14/arch/microblaze/include/asm/
DKbuild6 generic-y += exec.h
/linux-4.4.14/arch/m32r/include/asm/
DKbuild4 generic-y += exec.h
/linux-4.4.14/arch/mips/fw/arc/
Dsalone.c23 return ARC_CALL4(exec, Path, Argc, Argv, Envp); in ArcExecute()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
Ddcb.c209 int (*exec)(struct nvkm_bios *, void *, int, u16)) in dcb_outp_foreach()
226 ret = exec(bios, data, idx, outp); in dcb_outp_foreach()
Dinit.c63 init_exec_set(struct nvbios_init *init, bool exec) in init_exec_set() argument
65 if (exec) init->execute &= 0xfd; in init_exec_set()
76 init_exec_force(struct nvbios_init *init, bool exec) in init_exec_force() argument
78 if (exec) init->execute |= 0x04; in init_exec_force()
2199 void (*exec)(struct nvbios_init *); member
2280 if (opcode >= init_opcode_nr || !init_opcode[opcode].exec) { in nvbios_exec()
2285 init_opcode[opcode].exec(init); in nvbios_exec()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dramfuc.h70 ramfuc_exec(struct ramfuc *ram, bool exec) in ramfuc_exec() argument
74 ret = nvkm_memx_fini(&ram->memx, exec); in ramfuc_exec()
Dramgt215.c888 bool exec = nvkm_boolopt(device->cfgopt, "NvMemExec", true); in gt215_ram_prog() local
890 if (exec) { in gt215_ram_prog()
/linux-4.4.14/arch/alpha/boot/tools/
Dobjstrip.c57 struct exec * aout; /* includes file & aout header */ in main()
197 aout = (struct exec *) buf; in main()
/linux-4.4.14/drivers/connector/
DKconfig20 events such as fork, exec, id change (uid, gid, suid, etc), and exit.
Dcn_proc.c114 ev->event_data.exec.process_pid = task->pid; in proc_exec_connector()
115 ev->event_data.exec.process_tgid = task->tgid; in proc_exec_connector()
/linux-4.4.14/arch/sparc/include/asm/
DKbuild8 generic-y += exec.h
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
Dmemx.c71 nvkm_memx_fini(struct nvkm_memx **pmemx, bool exec) in nvkm_memx_fini() argument
87 if (exec) { in nvkm_memx_fini()
/linux-4.4.14/arch/um/include/asm/
Dprocessor-generic.h35 } fork, exec; member
DKbuild9 generic-y += exec.h
/linux-4.4.14/arch/avr32/include/asm/
DKbuild8 generic-y += exec.h
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
Ddcb.h63 int dcb_outp_foreach(struct nvkm_bios *, void *data, int (*exec)
/linux-4.4.14/Documentation/devicetree/bindings/crypto/
Dfsl-sec2.txt15 - fsl,exec-units-mask : The bitmask representing what execution units
68 fsl,exec-units-mask = <0xfe>;
/linux-4.4.14/Documentation/prctl/
Dno_new_privs.txt15 - The exec code has special handling for ptrace.
30 Be careful, though: LSMs might also not tighten constraints on exec
/linux-4.4.14/arch/parisc/include/asm/
DKbuild9 generic-y += exec.h
Dprocessor.h275 elf_caddr_t *argv = (elf_caddr_t *)bprm->exec + 1; \
/linux-4.4.14/arch/xtensa/include/asm/
DKbuild8 generic-y += exec.h
/linux-4.4.14/include/linux/
Dbinfmts.h46 unsigned long loader, exec; member
Dperf_event.h962 extern void perf_event_comm(struct task_struct *tsk, bool exec);
1101 static inline void perf_event_comm(struct task_struct *tsk, bool exec) { } in perf_event_comm() argument
Dsched.h2637 extern void __set_task_comm(struct task_struct *tsk, const char *from, bool exec);
/linux-4.4.14/arch/arm/include/asm/
DKbuild8 generic-y += exec.h
/linux-4.4.14/arch/tile/include/asm/
DKbuild11 generic-y += exec.h
/linux-4.4.14/arch/m68k/include/asm/
DKbuild8 generic-y += exec.h
/linux-4.4.14/arch/sh/include/asm/
DKbuild9 generic-y += exec.h
/linux-4.4.14/arch/x86/ia32/
Dia32_aout.c264 struct exec ex; in load_aout_binary()
267 ex = *((struct exec *) bprm->buf); /* exec-header */ in load_aout_binary()
402 struct exec ex; in load_aout_library()
/linux-4.4.14/arch/cris/include/asm/
DKbuild11 generic-y += exec.h
/linux-4.4.14/arch/metag/include/asm/
Dprocessor.h113 unsigned int *argc = (unsigned int *) bprm->exec; \
DKbuild11 generic-y += exec.h
/linux-4.4.14/Documentation/networking/
Dipvlan.txt95 (1) ip netns exec ns0 bash
102 (1) ip netns exec ns1 bash
/linux-4.4.14/drivers/dma/
Dsirf-dma.c133 void (*exec)(struct sirfsoc_dma_desc *sdesc, member
864 sdma->exec_desc = data->exec; in sirfsoc_dma_probe()
1132 .exec = sirfsoc_dma_execute_hw_a6,
1137 .exec = sirfsoc_dma_execute_hw_a7v1,
1142 .exec = sirfsoc_dma_execute_hw_a7v2,
/linux-4.4.14/arch/c6x/include/asm/
DKbuild14 generic-y += exec.h
/linux-4.4.14/arch/unicore32/include/asm/
DKbuild13 generic-y += exec.h
/linux-4.4.14/arch/nios2/include/asm/
DKbuild16 generic-y += exec.h
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
Dgf100.c406 void (*exec)(struct gf100_clk *, int); in gf100_clk_prog() member
420 stage[i].exec(clk, j); in gf100_clk_prog()
Dgk104.c447 void (*exec)(struct gk104_clk *, int); in gk104_clk_prog() member
465 stage[i].exec(clk, j); in gk104_clk_prog()
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dpq3-sec3.1-0.dtsi43 fsl,exec-units-mask = <0xbfe>;
Dpq3-sec3.3-0.dtsi43 fsl,exec-units-mask = <0x97c>;
Dpq3-sec3.0-0.dtsi43 fsl,exec-units-mask = <0x9fe>;
Dpq3-sec2.1-0.dtsi41 fsl,exec-units-mask = <0xfe>;
Dmpc8541cds.dts236 fsl,exec-units-mask = <0x7e>;
Dmpc8555cds.dts236 fsl,exec-units-mask = <0x7e>;
/linux-4.4.14/arch/openrisc/include/asm/
DKbuild22 generic-y += exec.h
/linux-4.4.14/Documentation/DocBook/
Dlibata.xml.db73 API-ata-exec-internal-sg
74 API-ata-exec-internal
D.kernel-api.xml.cmd2 …k-core.c block/blk-map.c block/blk-sysfs.c block/blk-settings.c block/blk-exec.c block/blk-flush.c…
Dkernel-api.xml.db361 API-call-usermodehelper-exec
/linux-4.4.14/Documentation/arm/SA1100/
DAssabet118 exec -b 0x100000 -l 0xc0000
202 exec -b 0x100000 -l 0xc0000 -c "root=/dev/mtdblock2"
229 >> exec -b 0x100000 -l 0xc0000
DGraphicsClient46 exec minicom
/linux-4.4.14/arch/h8300/include/asm/
DKbuild16 generic-y += exec.h
/linux-4.4.14/Documentation/frv/
Dbooting.txt72 exec -c "<CMDLINE>" 0x00100000
76 exec -c "console=ttySM0,115200 ip=:::::dhcp root=/dev/mtdblock2 rw"
Dfeatures.txt303 exec'd; or when an unpinning request happens:
/linux-4.4.14/Documentation/vm/
Dovercommit-accounting74 o Review stack handling/building on exec
Dnuma_memory_policy.txt44 [clone() w/o the CLONE_VM flag] and exec*(). This allows a parent task
45 to establish the task policy for a child task exec()'d from an
87 space is discarded and recreated on exec*(), VMA policies are NOT
88 inheritable across exec(). Thus, only NUMA-aware applications may
422 exec(2)
Dunevictable-lru.txt27 - munmap()/exit()/exec() system call handling.
496 munmap()/exit()/exec() SYSTEM CALL HANDLING
500 munmap() or via an internal unmap from exit() or exec() processing, we must
/linux-4.4.14/arch/m68k/
DKconfig105 The name comes from the similarity to the exec system call.
/linux-4.4.14/Documentation/filesystems/
Dramfs-rootfs-initramfs.txt96 to locate and mount a root partition, then exec some variant of /sbin/init
115 off control it can overmount / with a new root device and exec another init
121 free up the space (find -xdev / -exec rm '{}' ';'), overmount rootfs
123 stdin/stdout/stderr to the new /dev/console, and exec the new init.
Daffs.txt156 /dev/sdb5 /amiga/Workbench affs noauto,user,exec,verbose 0 0
Dporting383 directory inodes on the way down a path walk (to check for exec permission). It
Dpath-lookup.txt309 * i_mode, i_uid, i_gid can be tested for exec permissions during path walk.
Dntfs.txt70 time find . -type f -exec md5sum "{}" \;
/linux-4.4.14/arch/powerpc/boot/dts/
Dmpc8349emitxgp.dts215 fsl,exec-units-mask = <0x7e>;
Dtqm8541.dts248 fsl,exec-units-mask = <0x7e>;
Dmpc8272ads.dts259 fsl,exec-units-mask = <0x7e>;
Dasp834x-redboot.dts284 exec-units-mask = <0x0000007e>;
Dtqm8555.dts248 fsl,exec-units-mask = <0x7e>;
Dsbc8548-post.dtsi214 fsl,exec-units-mask = <0xfe>;
Dsbc8349.dts247 fsl,exec-units-mask = <0x7e>;
Dmpc832x_rdb.dts149 fsl,exec-units-mask = <0x4c>;
Dmpc8313erdb.dts142 fsl,exec-units-mask = <0x4c>;
Dmpc8349emitx.dts309 fsl,exec-units-mask = <0x7e>;
Dstxssa8555.dts235 fsl,exec-units-mask = <0x7e>;
Dmpc8377_wlan.dts330 fsl,exec-units-mask = <0x9fe>;
Dmpc8379_rdb.dts346 fsl,exec-units-mask = <0x9fe>;
Dmpc834x_mds.dts267 fsl,exec-units-mask = <0x7e>;
Dmpc8315erdb.dts292 fsl,exec-units-mask = <0x97c>;
Dmpc8377_rdb.dts348 fsl,exec-units-mask = <0x9fe>;
Dmpc836x_rdk.dts169 fsl,exec-units-mask = <0x7e>;
Dmpc8379_mds.dts339 fsl,exec-units-mask = <0x9fe>;
Dmpc8378_rdb.dts348 fsl,exec-units-mask = <0x9fe>;
Dmpc836x_mds.dts202 fsl,exec-units-mask = <0x7e>;
Dmpc832x_mds.dts171 fsl,exec-units-mask = <0x4c>;
Dmpc8378_mds.dts341 fsl,exec-units-mask = <0x9fe>;
Dmpc8377_mds.dts341 fsl,exec-units-mask = <0x9fe>;
Dxpedite5301.dts492 fsl,exec-units-mask = <0x9fe>;
Dxpedite5370.dts490 fsl,exec-units-mask = <0x9fe>;
Dxpedite5330.dts528 fsl,exec-units-mask = <0x9fe>;
Dxcalibur1501.dts582 fsl,exec-units-mask = <0x9fe>;
/linux-4.4.14/tools/perf/Documentation/
Dperf-probe.txt92 Show available functions in given module or kernel. With -x/--exec,
116 --exec=PATH::
/linux-4.4.14/drivers/net/ethernet/brocade/bna/
Dbfi.h265 u32 exec; /*!< exec vector */ member
Dbfa_ioc.c1173 if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) { in bfa_ioc_hw_sem_init()
/linux-4.4.14/Documentation/sound/alsa/soc/
Ddapm.txt74 o Pre - Special PRE widget (exec before all others)
75 o Post - Special POST widget (exec after all others)
/linux-4.4.14/arch/mips/include/asm/
Dsgiarcs.h190 LONG exec; /* Load and begin execution of a member
/linux-4.4.14/security/selinux/
DKconfig86 kernel (including any implied execute for read-implies-exec) for
/linux-4.4.14/Documentation/zh_CN/
Dmagic-number.txt106 WANPIPE_MAGIC 0x414C4453 sdla_{dump,exec} include/linux/wanpipe.h
/linux-4.4.14/Documentation/power/
Dswsusp-dmcrypt.txt115 exec chroot . /sbin/init $* < dev/console > dev/console 2>&1
/linux-4.4.14/drivers/gpu/drm/nouveau/
Dnouveau_bo.c1102 int (*exec)(struct nouveau_channel *, in nouveau_bo_move_init() member
1145 drm->ttm.move = mthd->exec; in nouveau_bo_move_init()
1150 } while ((++mthd)->exec); in nouveau_bo_move_init()
Dnouveau_bios.c1329 int (*exec)(struct drm_device *, void *, int idx, u8 *outp)) in olddcb_outp_foreach()
1344 ret = exec(dev, data, idx, outp); in olddcb_outp_foreach()
/linux-4.4.14/fs/cramfs/
DREADME29 lines); put another way, the same order as `find -type d -exec
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dmemx.fuc364 // $r13 - message (exec)
/linux-4.4.14/Documentation/early-userspace/
DREADME149 and exec one of the predefined init binaries.
/linux-4.4.14/Documentation/fault-injection/
Dfault-injection.txt195 bash -c "echo 1 > /proc/self/make-it-fail && exec $*"
/linux-4.4.14/drivers/scsi/bfa/
Dbfi.h357 u32 exec; /* exec vector */ member
Dbfa_ioc.c732 if (swab32(fwhdr.exec) == BFI_FWBOOT_TYPE_NORMAL) { in bfa_iocpf_sm_fwcheck_entry()
750 bfa_trc(iocpf->ioc, swab32(fwhdr.exec)); in bfa_iocpf_sm_fwcheck_entry()
/linux-4.4.14/tools/usb/usbip/
DINSTALL113 pass the option `--exec-prefix=PREFIX' to `configure', the package uses
/linux-4.4.14/Documentation/security/
Dcredentials.txt263 (*) UNIX exec privilege escalation bits (SUID/SGID);
265 (*) File capabilities exec privilege escalation bits.
Dkeys.txt727 Note that this setting is inherited across fork/exec.
766 The assumed authoritative key is inherited across fork and exec.
/linux-4.4.14/arch/tile/
DKconfig214 The name comes from the similarity to the exec system call.
/linux-4.4.14/Documentation/cgroups/
Dcgroups.txt138 the admin can easily set up a script which receives exec notifications
319 7) fork, exec or clone the job tasks from this founding father task.
Dcpusets.txt677 6) fork, exec or clone the job tasks from this founding father task.
/linux-4.4.14/arch/ia64/
DKconfig528 The name comes from the similarity to the exec system call.
/linux-4.4.14/arch/sh/
DKconfig612 The name comes from the similarity to the exec system call.
/linux-4.4.14/Documentation/s390/
DDebugging390.txt812 It is typically useful to add shortcuts to your profile.exec file
916 Also CP has a file called profile.exec which automatically gets called
919 use profile.exec to define some keystrokes.
/linux-4.4.14/arch/powerpc/
DKconfig430 The name comes from the similarity to the exec system call.
/linux-4.4.14/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt2180 host# find . -uid 0 -exec chown jdike {} \;
2893 sh -c 'echo pid=$$; echo -n hit return; read x; exec strace -p 1 -o strace.out'
3063 request = {op = 2, u = {exec = {ip = 1350467584, sp = 2952789424}, fork = {
3888 start-stop-daemon --start --quiet --exec /sbin/syslogd -- $SYSLOGD
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_sp.c55 exe_q_execute exec, in bnx2x_exe_queue_init() argument
72 o->execute = exec; in bnx2x_exe_queue_init()
/linux-4.4.14/kernel/events/
Dcore.c5896 void perf_event_comm(struct task_struct *task, bool exec) in perf_event_comm() argument
5910 .misc = exec ? PERF_RECORD_MISC_COMM_EXEC : 0, in perf_event_comm()
/linux-4.4.14/arch/x86/
DKconfig1678 exec() and munmap().
1751 The name comes from the similarity to the exec system call.
/linux-4.4.14/Documentation/filesystems/cifs/
DREADME370 exec Permit execution of binaries on the mount.
/linux-4.4.14/arch/mips/
DKconfig2651 The name comes from the similarity to the exec system call.
/linux-4.4.14/init/
DKconfig784 init is exec'ed.
/linux-4.4.14/Documentation/trace/
Dftrace.txt1867 exec "$@"