tag | line | file | source code |
elf_prot | 233 | fs/binfmt_elf.c | int elf_prot = 0; |
elf_prot | 235 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_R) elf_prot = PROT_READ; |
elf_prot | 236 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
elf_prot | 237 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
elf_prot | 246 | fs/binfmt_elf.c | elf_prot, |
elf_prot | 582 | fs/binfmt_elf.c | int elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0; |
elf_prot | 583 | fs/binfmt_elf.c | if (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
elf_prot | 584 | fs/binfmt_elf.c | if (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
elf_prot | 588 | fs/binfmt_elf.c | elf_prot, |