Searched refs:exe_file (Results 1 – 10 of 10) sorted by relevance
/linux/arch/arc/kernel/ |
H A D | troubleshoot.c | 58 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/kernel/ |
H A D | audit_watch.c | 526 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()
|
H A D | fork.c | 620 struct file *exe_file; in dup_mm_exe_file() local 622 exe_file = get_mm_exe_file(oldmm); in dup_mm_exe_file() 623 RCU_INIT_POINTER(mm->exe_file, exe_file); in dup_mm_exe_file() 628 if (exe_file && deny_write_access(exe_file)) in dup_mm_exe_file() 1279 RCU_INIT_POINTER(mm->exe_file, NULL); in mm_init() 1415 old_exe_file = rcu_dereference_raw(mm->exe_file); in set_mm_exe_file() 1426 rcu_assign_pointer(mm->exe_file, new_exe_file); in set_mm_exe_file() 1476 old_exe_file = rcu_dereference_raw(mm->exe_file); in replace_mm_exe_file() 1477 rcu_assign_pointer(mm->exe_file, new_exe_file); in replace_mm_exe_file() 1496 struct file *exe_file; in get_mm_exe_file() local [all …]
|
H A D | taskstats.c | 160 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()
|
H A D | audit.c | 2211 struct file *exe_file; in audit_log_d_path_exe() local 2216 exe_file = get_mm_exe_file(mm); in audit_log_d_path_exe() 2217 if (!exe_file) in audit_log_d_path_exe() 2220 audit_log_d_path(ab, " exe=", &exe_file->f_path); in audit_log_d_path_exe() 2221 fput(exe_file); in audit_log_d_path_exe()
|
H A D | signal.c | 1221 struct file *exe_file; in print_fatal_signal() local 1223 exe_file = get_task_exe_file(current); in print_fatal_signal() 1224 if (exe_file) { in print_fatal_signal() 1226 exe_file, current->comm, signr); in print_fatal_signal() 1227 fput(exe_file); in print_fatal_signal()
|
/linux/security/tomoyo/ |
H A D | util.c | 968 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/fs/ |
H A D | coredump.c | 169 struct file *exe_file; in cn_print_exe_file() local 173 exe_file = get_mm_exe_file(current->mm); in cn_print_exe_file() 174 if (!exe_file) in cn_print_exe_file() 183 path = file_path(exe_file, pathbuf, PATH_MAX); in cn_print_exe_file() 199 fput(exe_file); in cn_print_exe_file()
|
/linux/mm/ |
H A D | debug.c | 239 mm->exe_file, in dump_mm()
|
/linux/kernel/bpf/ |
H A D | verifier.c | 6687 struct file __rcu *exe_file; in BTF_TYPE_SAFE_RCU_OR_NULL() local
|