Home
last modified time | relevance | path

Searched refs:elf_ex (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/fs/
Dbinfmt_elf.c461 static struct elf_phdr *load_elf_phdrs(const struct elfhdr *elf_ex, in load_elf_phdrs() argument
472 if (elf_ex->e_phentsize != sizeof(struct elf_phdr)) in load_elf_phdrs()
477 size = sizeof(struct elf_phdr) * elf_ex->e_phnum; in load_elf_phdrs()
486 retval = elf_read(elf_file, elf_phdata, size, elf_ex->e_phoff); in load_elf_phdrs()
841 struct elfhdr *elf_ex = (struct elfhdr *)bprm->buf; in load_elf_binary() local
849 if (memcmp(elf_ex->e_ident, ELFMAG, SELFMAG) != 0) in load_elf_binary()
852 if (elf_ex->e_type != ET_EXEC && elf_ex->e_type != ET_DYN) in load_elf_binary()
854 if (!elf_check_arch(elf_ex)) in load_elf_binary()
856 if (elf_check_fdpic(elf_ex)) in load_elf_binary()
861 elf_phdata = load_elf_phdrs(elf_ex, bprm->file); in load_elf_binary()
[all …]
/linux-6.1.9/include/linux/
Delf.h26 #define START_THREAD(elf_ex, regs, elf_entry, start_stack) \ argument
/linux-6.1.9/arch/mips/kernel/
Delf.c329 int mips_elf_read_implies_exec(void *elf_ex, int exstack) in mips_elf_read_implies_exec() argument
/linux-6.1.9/arch/mips/include/asm/
Delf.h518 extern int mips_elf_read_implies_exec(void *elf_ex, int exstack);