Home
last modified time | relevance | path

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

/kernel/
Daudit_watch.c554 struct file *exe_file; in audit_exe_compare() local
558 exe_file = get_task_exe_file(tsk); in audit_exe_compare()
559 if (!exe_file) in audit_exe_compare()
561 ino = exe_file->f_inode->i_ino; in audit_exe_compare()
562 dev = exe_file->f_inode->i_sb->s_dev; in audit_exe_compare()
563 fput(exe_file); in audit_exe_compare()
Dfork.c428 RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); in dup_mmap()
560 RCU_INIT_POINTER(mm->exe_file, get_mm_exe_file(oldmm)); in dup_mmap()
775 old_exe_file = rcu_dereference_raw(mm->exe_file); in set_mm_exe_file()
779 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file()
792 struct file *exe_file; in get_mm_exe_file() local
795 exe_file = rcu_dereference(mm->exe_file); in get_mm_exe_file()
796 if (exe_file && !get_file_rcu(exe_file)) in get_mm_exe_file()
797 exe_file = NULL; in get_mm_exe_file()
799 return exe_file; in get_mm_exe_file()
812 struct file *exe_file = NULL; in get_task_exe_file() local
[all …]
Daudit.c1871 struct file *exe_file; in audit_log_d_path_exe() local
1876 exe_file = get_mm_exe_file(mm); in audit_log_d_path_exe()
1877 if (!exe_file) in audit_log_d_path_exe()
1880 audit_log_d_path(ab, " exe=", &exe_file->f_path); in audit_log_d_path_exe()
1881 fput(exe_file); in audit_log_d_path_exe()
Dsys.c1657 struct file *old_exe, *exe_file; in prctl_set_mm_exe_file() local
1683 exe_file = get_mm_exe_file(mm); in prctl_set_mm_exe_file()
1685 if (exe_file) { in prctl_set_mm_exe_file()
1693 &exe_file->f_path)) in prctl_set_mm_exe_file()
1698 fput(exe_file); in prctl_set_mm_exe_file()
1714 old_exe = xchg(&mm->exe_file, exe.file); in prctl_set_mm_exe_file()
1722 fput(exe_file); in prctl_set_mm_exe_file()