Home
last modified time | relevance | path

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

/linux-6.6.21/arch/arc/kernel/ !
Dtroubleshoot.c58 struct file *exe_file; in print_task_path_n_nm() local
65 exe_file = get_mm_exe_file(mm); in print_task_path_n_nm()
68 if (exe_file) { in print_task_path_n_nm()
69 path_nm = file_path(exe_file, buf, ARC_PATH_MAX-1); in print_task_path_n_nm()
70 fput(exe_file); in print_task_path_n_nm()
/linux-6.6.21/kernel/ !
Daudit_watch.c526 struct file *exe_file; in audit_exe_compare() local
536 exe_file = get_mm_exe_file(current->mm); in audit_exe_compare()
537 if (!exe_file) in audit_exe_compare()
539 ino = file_inode(exe_file)->i_ino; in audit_exe_compare()
540 dev = file_inode(exe_file)->i_sb->s_dev; in audit_exe_compare()
541 fput(exe_file); in audit_exe_compare()
Dfork.c633 struct file *exe_file; in dup_mm_exe_file() local
635 exe_file = get_mm_exe_file(oldmm); in dup_mm_exe_file()
636 RCU_INIT_POINTER(mm->exe_file, exe_file); in dup_mm_exe_file()
641 if (exe_file && deny_write_access(exe_file)) in dup_mm_exe_file()
1281 RCU_INIT_POINTER(mm->exe_file, NULL); in mm_init()
1414 old_exe_file = rcu_dereference_raw(mm->exe_file); in set_mm_exe_file()
1425 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file()
1473 old_exe_file = rcu_dereference_raw(mm->exe_file); in replace_mm_exe_file()
1474 rcu_assign_pointer(mm->exe_file, new_exe_file); in replace_mm_exe_file()
1492 struct file *exe_file; in get_mm_exe_file() local
[all …]
Dtaskstats.c160 struct file *exe_file = get_task_exe_file(tsk); in exe_add_tsk() local
162 if (exe_file) { in exe_add_tsk()
165 huge_encode_dev(exe_file->f_inode->i_sb->s_dev); in exe_add_tsk()
166 stats->ac_exe_inode = exe_file->f_inode->i_ino; in exe_add_tsk()
167 fput(exe_file); in exe_add_tsk()
Daudit.c2212 struct file *exe_file; in audit_log_d_path_exe() local
2217 exe_file = get_mm_exe_file(mm); in audit_log_d_path_exe()
2218 if (!exe_file) in audit_log_d_path_exe()
2221 audit_log_d_path(ab, " exe=", &exe_file->f_path); in audit_log_d_path_exe()
2222 fput(exe_file); in audit_log_d_path_exe()
Dsignal.c1264 struct file *exe_file; in print_fatal_signal() local
1266 exe_file = get_task_exe_file(current); in print_fatal_signal()
1267 if (exe_file) { in print_fatal_signal()
1269 exe_file, current->comm, signr); in print_fatal_signal()
1270 fput(exe_file); in print_fatal_signal()
/linux-6.6.21/security/tomoyo/ !
Dutil.c968 struct file *exe_file; in tomoyo_get_exe() local
974 exe_file = get_mm_exe_file(mm); in tomoyo_get_exe()
975 if (!exe_file) in tomoyo_get_exe()
978 cp = tomoyo_realpath_from_path(&exe_file->f_path); in tomoyo_get_exe()
979 fput(exe_file); in tomoyo_get_exe()
/linux-6.6.21/fs/ !
Dcoredump.c163 struct file *exe_file; in cn_print_exe_file() local
167 exe_file = get_mm_exe_file(current->mm); in cn_print_exe_file()
168 if (!exe_file) in cn_print_exe_file()
177 path = file_path(exe_file, pathbuf, PATH_MAX); in cn_print_exe_file()
193 fput(exe_file); in cn_print_exe_file()
/linux-6.6.21/mm/ !
Ddebug.c214 mm->exe_file, in dump_mm()
/linux-6.6.21/fs/proc/ !
Dbase.c1725 struct file *exe_file; in proc_exe_link() local
1730 exe_file = get_task_exe_file(task); in proc_exe_link()
1732 if (exe_file) { in proc_exe_link()
1733 *exe_path = exe_file->f_path; in proc_exe_link()
1734 path_get(&exe_file->f_path); in proc_exe_link()
1735 fput(exe_file); in proc_exe_link()
/linux-6.6.21/include/linux/ !
Dmm_types.h844 struct file __rcu *exe_file; member
/linux-6.6.21/kernel/bpf/ !
Dverifier.c6290 struct file __rcu *exe_file; in BTF_TYPE_SAFE_RCU_OR_NULL() local