Lines Matching defs:new_exe_file
1223 * @new_exe_file: The new file to use.
1231 * Can only fail if new_exe_file != NULL.
1233 int set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1244 if (new_exe_file) {
1249 if (unlikely(exe_file_deny_write_access(new_exe_file)))
1251 get_file(new_exe_file);
1253 rcu_assign_pointer(mm->exe_file, new_exe_file);
1264 * @new_exe_file: The new file to use.
1270 int replace_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
1296 ret = exe_file_deny_write_access(new_exe_file);
1299 get_file(new_exe_file);
1304 rcu_assign_pointer(mm->exe_file, new_exe_file);