Searched refs:textpos (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/fs/ |
D | binfmt_flat.c | 415 unsigned long textpos, datapos, realdatastart; in load_flat_file() local 540 textpos = vm_mmap(bprm->file, 0, text_len, PROT_READ|PROT_EXEC, in load_flat_file() 542 if (!textpos || IS_ERR_VALUE(textpos)) { in load_flat_file() 543 ret = textpos; in load_flat_file() 544 if (!textpos) in load_flat_file() 561 vm_munmap(textpos, text_len); in load_flat_file() 585 vm_munmap(textpos, text_len); in load_flat_file() 598 textpos = vm_mmap(NULL, 0, len, in load_flat_file() 601 if (!textpos || IS_ERR_VALUE(textpos)) { in load_flat_file() 602 ret = textpos; in load_flat_file() [all …]
|