Home
last modified time | relevance | path

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

/kernel/
Dfork.c1237 int set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) in set_mm_exe_file() argument
1248 if (new_exe_file) { in set_mm_exe_file()
1253 if (unlikely(deny_write_access(new_exe_file))) in set_mm_exe_file()
1255 get_file(new_exe_file); in set_mm_exe_file()
1257 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file()
1274 int replace_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) in replace_mm_exe_file() argument
1298 ret = deny_write_access(new_exe_file); in replace_mm_exe_file()
1301 get_file(new_exe_file); in replace_mm_exe_file()
1303 old_exe_file = xchg(&mm->exe_file, new_exe_file); in replace_mm_exe_file()